필터 지우기
필터 지우기

Solve these unkowns x and y using these 2 simultaneous equations

조회 수: 1 (최근 30일)
nathalie
nathalie 2023년 10월 29일
댓글: Walter Roberson 2023년 10월 29일
Eq1= 2760 * sin (200) + m3R3L3 * sin (107) + m4R4L4 * sin (307) = 0
Eq2= 2760 * cos (200) + m3R3l3 * cos (107) + m4R4L4 * cos(307) = 0
I want to get m3r3l3 and m3r4l4 we can consider m3r3l3 as x and m4r4l4 as y

채택된 답변

Walter Roberson
Walter Roberson 2023년 10월 29일
syms m3R3l3 m4R4l4
Eq1 = 2760 * sind(sym(200)) + m3R3l3 * sind(sym(107)) + m4R4l4 * sind(sym(307)) == 0
Eq1 = 
Eq2 = 2760 * cosd(sym(200)) + m3R3l3 * cosd(sym(107)) + m4R4l4 * cosd(sym(307)) == 0
Eq2 = 
sol = solve([Eq1, Eq2])
sol = struct with fields:
m3R3l3: (2760*(cos(pi/9)*sin((53*pi)/180) + cos((53*pi)/180)*sin(pi/9)))/(cos((53*pi)/180)*sin((73*pi)/180) - cos((73*pi)/180)*sin((53*pi)/180)) m4R4l4: (2760*(cos(pi/9)*sin((73*pi)/180) + cos((73*pi)/180)*sin(pi/9)))/(cos((53*pi)/180)*sin((73*pi)/180) - cos((73*pi)/180)*sin((53*pi)/180))
simplify(sol.m3R3l3)
ans = 
simplify(sol.m4R4l4)
ans = 
  댓글 수: 2
nathalie
nathalie 2023년 10월 29일
Yes there any way to solve this final answer to get normal numbers? On matlab?
Walter Roberson
Walter Roberson 2023년 10월 29일
No, π is transcendental. It is mathematically impossible to express it in terms of a finite series of "algebraic numbers". It is not the root of any finite polynomial with rational coefficients. π is one of the most abnormal real numbers that exist.
However you can get a more compact answer than the above:
syms m3R3l3 m4R4l4
Eq1 = 2760 * sind(sym(200)) + m3R3l3 * sind(sym(107)) + m4R4l4 * sind(sym(307)) == 0
Eq1 = 
Eq2 = 2760 * cosd(sym(200)) + m3R3l3 * cosd(sym(107)) + m4R4l4 * cosd(sym(307)) == 0
Eq2 = 
sol = solve([Eq1, Eq2])
sol = struct with fields:
m3R3l3: (2760*(cos(pi/9)*sin((53*pi)/180) + cos((53*pi)/180)*sin(pi/9)))/(cos((53*pi)/180)*sin((73*pi)/180) - cos((73*pi)/180)*sin((53*pi)/180)) m4R4l4: (2760*(cos(pi/9)*sin((73*pi)/180) + cos((73*pi)/180)*sin(pi/9)))/(cos((53*pi)/180)*sin((73*pi)/180) - cos((73*pi)/180)*sin((53*pi)/180))
simplify(sol.m3R3l3, 'steps', 1000)
ans = 
simplify(sol.m4R4l4, 'steps', 1000)
ans = 

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

추가 답변 (1개)

Torsten
Torsten 2023년 10월 29일
이동: Torsten 2023년 10월 29일
I think you want to use sind and cosd instead of sin and cos.
This is a linear system of equations in m3R3L3 and m4R4L4. You know how to solve linear systems of equations ?

카테고리

Help CenterFile Exchange에서 Numbers and Precision에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by