can I multiply the denominator to make it disappear?

7 views (last 30 days)
f1=(- 11*c1^2 + 2043*c1*c3 + 11*c2^2 - 2043*c2 + 11*c3^2)^2 + (497*c2 + (3542*c3)/(c2 - c1*c3) + 11*c1*c2 - 497*c1*c3)^2 - 1;
I need to remove the denominator to have a linear equation, what should I do?

Accepted Answer

Walter Roberson
Walter Roberson on 2 Jan 2022
syms f1 c1 c2 c3
eqn = f1 == (- 11*c1^2 + 2043*c1*c3 + 11*c2^2 - 2043*c2 + 11*c3^2)^2 + (497*c2 + (3542*c3)/(c2 - c1*c3) + 11*c1*c2 - 497*c1*c3)^2 - 1;
[LN, LD] = numden(lhs(eqn))
LN = 
LD = 
1
[RN, RD] = numden(rhs(eqn))
RN = 
RD = 
neweqn = simplify(LN * RD) == simplify(RN * LD)
neweqn = 

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!