Multiple answers from solve

조회 수: 4 (최근 30일)
Kevin
Kevin 2021년 9월 5일
댓글: Kevin 2021년 9월 6일
close all
clear
clc
AB=180
AO=60
BO=200
syms alpha
eqn1 = BO^2 == AB^2+AO^2-2*AB*AO*cosd(alpha)
eqn2 = solve (eqn1,alpha)
vpa(eqn2)
ans =
259.32807071423785412135760253313
100.67192928576214587864239746687
I know that it's the latter (100.6719....), but why does it give me 2 answers and how do I make matlab give me 1 answer?

채택된 답변

Walter Roberson
Walter Roberson 2021년 9월 5일
AB=180
AB = 180
AO=60
AO = 60
BO=200
BO = 200
syms alpha
eqn1 = BO^2 == AB^2+AO^2-2*AB*AO*cosd(alpha)
eqn1 = 
sol = solve(eqn1, alpha)
sol = 
vpa(sol)
ans = 
How is MATLAB to know that one of the solutions is more right than the other?
You could vpasolve() with a range:
vpasolve(eqn1, alpha, [0 180])
ans = 
100.67192928576214587864239746687
  댓글 수: 3
Walter Roberson
Walter Roberson 2021년 9월 6일
Yes, it means thare are two possible answers for alpha.
AB=180
AB = 180
AO=60
AO = 60
BO=200
BO = 200
syms alpha
eqn1 = BO^2 == AB^2+AO^2-2*AB*AO*cosd(alpha)
eqn1 = 
sol = solve(eqn1, alpha)
sol = 
vpa(sol)
ans = 
Now let us back-substitute the solutions into the defining equation
subs(eqn1, alpha, sol)
ans = 
lhs(ans) - rhs(ans)
ans = 
The difference between the two sides is 0, for both answers. So both answers are solutions. And MATLAB has no reason to know that one is "right" for your situation unless you give it more information to tell it which one you prefer.
Kevin
Kevin 2021년 9월 6일
Thank you so much.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by