Borrar filtros
Borrar filtros

can you help me to solve this equation?

1 visualización (últimos 30 días)
Troy Yoga
Troy Yoga el 7 de Mzo. de 2023
Comentada: Alex Sha el 10 de Mzo. de 2023
P = sqrt(27.8*exp(5*x)-1) == cos((120*x^2+sqrt(2*x))/(17*x-65))^(-1)
  1 comentario
Alex Sha
Alex Sha el 10 de Mzo. de 2023
There are multi-solution with real data type:
x: 0.806253525595036
or
x: 1.29507590447776
or
x: 1.5762255940371

Iniciar sesión para comentar.

Respuestas (2)

KSSV
KSSV el 7 de Mzo. de 2023
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 el 7 de Mzo. de 2023
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

Categorías

Más información sobre Numerical Integration and Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by