How Can I solve this equations system?
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
K.a+M.b=L.b
P.a+ Q .b=R.a
I have the equations above and I am trying to find a and b. All capital letters are constants. How can I solve this problem in Matlab?
Thanks
Antworten (2)
Walter Roberson
am 25 Feb. 2014
0 Stimmen
Do the "." represent multiplication? Are the elements all scalars or are they matrices?
If everything is scalar and "." represents ordinary multiplication, then the solution is a = 0, b = 0.
6 Kommentare
Walter Roberson
am 25 Feb. 2014
I seem to find that there are potential multiple solutions,
a = b * (L-M)/K
for all real-valued b
Provided that Q has a particular ratio in K, L, M, P, R (independent of "a" and "b"). And when it does not have that particular ratio, a = 0, b = 0 looks to be the only solution.
Star Strider
am 26 Feb. 2014
How did you get that from the equations in your original post?
What are you not telling us?
Mehmet
am 27 Feb. 2014
Walter Roberson
am 27 Feb. 2014
I ran it through Maple and did some testing. You aren't going to be able to get a symbolic solution, I don't think.
You have a difficulty in the equations. Look carefully at the log() terms. One of them is log(8*cos(beta) - 9). For all real beta, 8*cos(beta)-9 is negative, ranging from -17 to -1. Thus you are introducing a complex term. Getting rid of that requires precise cancellation of all of the complex terms in the equation, which is pretty tricky to achieve.
Now if the alpha and beta are permitted to be complex then getting a solution numerically would be easier.
Mehmet
am 27 Feb. 2014
Mehmet
am 25 Feb. 2014
0 Stimmen
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!