How to solve a complicated equation?
Show older comments
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 Comments
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
on 16 Jul 2021
Cola
on 16 Jul 2021
Star Strider
on 16 Jul 2021
My pleasure!
Accepted Answer
More Answers (0)
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


