Why simplify does not simplify this expression ?
Q, Gamma, omega0 = var( 'Q', 'Gamma', 'omega0')
u = (Q * omega0 + Gamma) / Q
simplify(u)
The output is: ω=Qω0+ΓQ
Instead of: ω=ω0+ΓQ
Q, Gamma, omega0 = var( 'Q', 'Gamma', 'omega0')
u = (Q * omega0 + Gamma) / Q
simplify(u)
The output is: ω=Qω0+ΓQ
Instead of: ω=ω0+ΓQ
anyway, I guess what you want is
u.expand()
Asked: 12 years ago
Seen: 4,962 times
Last updated: Nov 29 '12