can I multiply the denominator to make it disappear?

7 次查看(过去 30 天)
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?

采纳的回答

Walter Roberson
Walter Roberson 2022-1-2
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 = 

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by