Filter löschen
Filter löschen

how to solve an equation by using trial and error method?

20 Ansichten (letzte 30 Tage)
Ali Deniz
Ali Deniz am 16 Mai 2022
Kommentiert: Ali Deniz am 16 Mai 2022
𝑇ℎ𝑟𝑜𝑎𝑡 (𝐴∗)=647.5 𝑚𝑚2
A=1027.5 mm^2
How can I calculate 𝑀𝑥 value by using trial and error method or how can I find the value of Mx by another method. Thank you.

Akzeptierte Antwort

Sam Chak
Sam Chak am 16 Mai 2022
I'm not sure what the trial-and-error method is for this, but I think that basic Algebraic methods can be used to rearrange the equation. I followed the example in fzero and make an assumption:
% Assume
gamma = 1.55526564459735;
% function to be solved
f = @(M) (1/M)*((2*(1 + (gamma - 1)/2*M^2))/(gamma + 1))^((gamma + 1)/(2*(gamma - 1))) - Ax/Astar;
% initial guess
M0 = 3;
% root-finding solver
Msol = fzero(f, M0)
There should be two real roots.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 16 Mai 2022
Multiply both sides by Mx. Subtract the left side from the right. Expand out. You now have a polynomial of degree 2 in Mx.
  2 Kommentare
Ali Deniz
Ali Deniz am 16 Mai 2022
I think you neglect the power of the RHS.
Walter Roberson
Walter Roberson am 16 Mai 2022
Ah, I am on mobile. I had tried scrolling the image but it didn't scroll so I didn't see the power.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Gamma Functions finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by