Explaination on solving trigonmetric equations for theta.

5 ビュー (過去 30 日間)
Tony Yu
Tony Yu 2020 年 8 月 8 日
回答済み: Walter Roberson 2020 年 8 月 8 日
I have these two equation and I am trying to solve for theta 1 and theta 2, can someone explain why there are 2 solution for each theta?
syms th1 th2 px py
eq1 = px == cos(th1+th2)+cos(th1)
eq2 = py == sin(th1+th2)+sin(th1)
sol = solve(eq1,eq2,th1,th2)
syms th1 th2 px py
eq1 = px == cos(th1+th2)+cos(th1)
eq2 = py == sin(th1+th2)+sin(th1)
sol = solve(eq1,eq2,th1,th2)
th1 = simplify(sol.th1)
th2 = simplify(sol.th2)
th1 =
2*atan((2*py + (- px^4 - 2*px^2*py^2 + 4*px^2 - py^4 + 4*py^2)^(1/2))/(px^2 + 2*px + py^2))
2*atan((2*py - (- px^4 - 2*px^2*py^2 + 4*px^2 - py^4 + 4*py^2)^(1/2))/(px^2 + 2*px + py^2))
th2 =
-2*atan((-(px^2 + py^2)*(px^2 + py^2 - 4))^(1/2)/(px^2 + py^2))
2*atan((-(px^2 + py^2)*(px^2 + py^2 - 4))^(1/2)/(px^2 + py^2))
  1 件のコメント
Image Analyst
Image Analyst 2020 年 8 月 8 日
Rescued two of these from spam quarantine, so there may be two almost identical questions.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2020 年 8 月 8 日
There are not really two solutions for each theta variable: there are two families of solutions, with the other solutions being separated by 2*Pi
As to "why": well, why not ? You can rewrite the first equation in terms of cos(th1) equalling something, and there are generally two solutions to that, reflecting the two quadrants that cos has the same sign.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by