Can this equation be solved for x? How does the solution look? Thank you

1 view (last 30 days)
x^2-bx+a^2*x^4-d*x^2+c=0

Accepted Answer

KSSV
KSSV on 25 May 2023
syms x a b c d
eqn = x^2-b*x+a^2*x^4-d*x^2+c==0
eqn = 
s = solve(eqn,x)
s = 

More Answers (0)

Community Treasure Hunt

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

Start Hunting!