필터 지우기
필터 지우기

can I multiply the denominator to make it disappear?

조회 수: 3 (최근 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?

채택된 답변

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