The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
Does Mathematica/Matlab/Maple Have any magic that can handle this? Alternatively can anyone recommend a nice linear algebra book? Granted I've only sat through 2 linear algebra courses but this sort of thing never came up for me.
While my math is probably not nearly up to snuff for this, you might want to talk to people who know about optimization of quadratic forms? You'll have to set some sort of bounds or conditions on these functions if you hope to solve them because each equation has two unknowns. So unless these equations are inter-related, which I think you are implying from the Linear Algebra title, you'll have a rough go at it. Otherwise if they ARE related you can just start performing basic math ( addition, subtraction, etc) to attempt to work them down into an equation with only one unknown. However, it seems like someone pursing a PhD would already have tried that so I am confused. Honestly you'll probably have to give a bit more information to illicit strong posts from the forum.
A brief google search turned up this fine document from MIT. Which may not be helpful as it is mostly math jargon, but you must know some math if you PhD requires you to deal with quadratic forms. It seems to deal with solving matrices of quadratic forms so maybe it'll help? Either way you get a bump from my post. Good luck with your research.
thanks very much for this link im checking it out right now.
Yeah I'm going to hit up some department members on monday. This has been my "thing to do" for maybe 3 weeks and i've kept botching it. I'm pretty clueless
Can't you just put those equations into a matrix and solve them by Gaussian elimination?
If you have 24 variables, you should be able to specify coefficients on all of them and then add everything together. If you don't have that many unique products, you can make the products into new variables (like a variable called X_1*X_2) and then solve again once you have constraints on the products.
Posts
A brief google search turned up this fine document from MIT. Which may not be helpful as it is mostly math jargon, but you must know some math if you PhD requires you to deal with quadratic forms. It seems to deal with solving matrices of quadratic forms so maybe it'll help? Either way you get a bump from my post. Good luck with your research.
Yeah I'm going to hit up some department members on monday. This has been my "thing to do" for maybe 3 weeks and i've kept botching it. I'm pretty clueless
If you have 24 variables, you should be able to specify coefficients on all of them and then add everything together. If you don't have that many unique products, you can make the products into new variables (like a variable called X_1*X_2) and then solve again once you have constraints on the products.
Isn't that only valid for linear equations, that is, something like y=aX_1+bX_2+......?
Edit: Duh I see what you mean. I will try some substitutions.