solving quartic eqn returns root

3 visualizzazioni (ultimi 30 giorni)
Babu Raj AP
Babu Raj AP il 16 Mag 2020
Risposto: madhan ravi il 16 Mag 2020
When I solve a quartic equation using solve by following the following steps
syms H Bo
eqn=H^4 + Bo/15*H^3 + 24/15*H + 4/15*Bo==0;
solx=solve(eqn,H)
I get no explicit functional expression for H in terms of Bo but the following result:
solx =
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 1)
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 2)
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 3)
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 4)
How do I get solve the above quartic equation and get an explicit expression for H in terms of Bo?

Risposta accettata

madhan ravi
madhan ravi il 16 Mag 2020
solx = vpa(solve(eqn,H,'Maxdegree',4))

Più risposte (0)

Prodotti


Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by