- #1
Maximilien
- 5
- 0
Homework Statement
I am having problems solving this system of non-linear equations in Matlab and Mathematica. a,b,c,d,e,f are all independent variables.
In Matlab I use fsolve() and get one solution, in Mathematica I use NSolve[] and get another totally different solution. Mathematica also reports this error: "NSolve::infsolns: Infinite solution set has dimension at least 1."
What is the problem here? Is it that there is no unique solution to this set of equations?
Homework Equations
[tex]
-\frac{21 a b c}{200000}+\frac{21 a^2 d}{400000}-\frac{21 b^2 d}{400000}+\frac{e}{100}=0
[/tex]
[tex]
\frac{21 a^2 c}{400000}-\frac{21 b^2 c}{400000}+\frac{21 a b d}{200000}+\frac{f}{100}=0
[/tex]
[tex]
\frac{c}{100}-\frac{19 a b e}{200000}+\frac{19 a^2 f}{400000}-\frac{19 b^2 f}{400000}=0
[/tex]
[tex]
\frac{d}{100}+\frac{19 a^2 e}{400000}-\frac{19 b^2 e}{400000}+\frac{19 a b f}{200000}=0
[/tex]
[tex]
\frac{a}{100}+\frac{b c e}{10000}-\frac{a d e}{10000}-\frac{a c f}{10000}-\frac{b d f}{10000}-\frac{1}{5 \sqrt{2}}=0
[/tex]
[tex]
\frac{b}{100}+\frac{a c e}{10000}+\frac{b d e}{10000}+\frac{b c f}{10000}-\frac{a d f}{10000}=0
[/tex]