How to plug in and solve for algebraic equation?

5 visualizaciones (últimos 30 días)
Meet Koradia
Meet Koradia el 13 de Mayo de 2022
Respondida: Sam Chak el 13 de Mayo de 2022
For example this
  2 comentarios
KSSV
KSSV el 13 de Mayo de 2022
You want to solve it for what?

Iniciar sesión para comentar.

Respuestas (2)

KSSV
KSSV el 13 de Mayo de 2022
t = linspace(0,1) ;
z = 15*(1+(4.1*0.064)/1000*(15/150)^(2/3)*t.^(5/3)).^(-3/2) ;
plot(t,z)
  1 comentario
KSSV
KSSV el 13 de Mayo de 2022
syms z t
eqn = z == 15*(1+(4.1*0.064)/1000*(15/150)^(2/3)*t.^(5/3)).^(-3/2) ;
s = solve(eqn,t)
Warning: Solutions are only valid under certain conditions. To include parameters and conditions in the solution, specify the 'ReturnConditions' value as 'true'.
s = 

Iniciar sesión para comentar.


Sam Chak
Sam Chak el 13 de Mayo de 2022
The idea is to reverse the equality in z, and then isolate t to the left-hand side. You can solve this algebra problem by hand and obtain:

Community Treasure Hunt

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

Start Hunting!

Translated by