can I multiply the denominator to make it disappear?

4 ビュー (過去 30 日間)
sebastiano della gatta
sebastiano della gatta 2022 年 1 月 2 日
回答済み: Walter Roberson 2022 年 1 月 2 日
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?
  2 件のコメント
Torsten
Torsten 2022 年 1 月 2 日
f = f1*(c2-c1*c3)^2
sebastiano della gatta
sebastiano della gatta 2022 年 1 月 2 日
thank you.

サインインしてコメントする。

採用された回答

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 Center および File ExchangeMathematics についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by