can you help me to solve this equation?

조회 수: 2 (최근 30일)
Troy Yoga
Troy Yoga 2023년 3월 7일
댓글: Alex Sha 2023년 3월 10일
P = sqrt(27.8*exp(5*x)-1) == cos((120*x^2+sqrt(2*x))/(17*x-65))^(-1)
  댓글 수: 1
Alex Sha
Alex Sha 2023년 3월 10일
There are multi-solution with real data type:
x: 0.806253525595036
or
x: 1.29507590447776
or
x: 1.5762255940371

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

답변 (2개)

KSSV
KSSV 2023년 3월 7일
syms x
P = sqrt(27.8*exp(5*x)-1) == cos((120*x^2+sqrt(2*x))/(17*x-65))^(-1) ;
s = vpasolve(P,x)
s = 

VBBV
VBBV 2023년 3월 7일
syms x real
P = sqrt(27.8*exp(5*x)-1) == acos((120*x^2+sqrt(2*x))/(17*x-65)); % better to use acos function
s = double(vpasolve(P,x))
s = 0.0654 - 32.1398i

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by