How to solve a complicated equation?
Afficher commentaires plus anciens
There is a Equation G. How to obtain the values of α and β when G=0?
G=-(-Omega^3*tau + (alpha + beta)*Omega)^2 - (Omega^2 - alpha*f)^2.
The answer:
alpha = Omega^2*cos(Omega*tau)/f;
beta = Omega*(f*sin(Omega*tau) - Omega*cos(Omega*tau))/f.

CAN anyone help me with this issue??? Thanks!!!
4 commentaires
There must be some sort of substitution or other assumption involved.
The Symboilic Math Toolbox arraives at an entirely different solution —
syms alpha beta f Omega tau
G=-(-Omega^3*tau + (alpha + beta)*Omega)^2 - (Omega^2 - alpha*f)^2
Gs = solve(G == 0, [alpha beta]);
alpha = Gs.alpha
alpha = simplify(alpha, 500)
beta = Gs.beta
.
Cola
le 16 Juil 2021
Cola
le 16 Juil 2021
Star Strider
le 16 Juil 2021
My pleasure!
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



