필터 지우기
필터 지우기

how can find lcm of fraction number.

조회 수: 35 (최근 30일)
se chss
se chss 2023년 4월 17일
답변: Aman 2023년 6월 2일
a = 3/10, b = 4/7
how can i find lcm of a and b?
matlab fucntion lcm input must be integer, so i cannot use lcm function.
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2023년 4월 17일
Hint - There is a method to obtain LCM of fractional numbers. Search on the internet.

댓글을 달려면 로그인하십시오.

답변 (1개)

Aman
Aman 2023년 6월 2일
Hi there,
Here are the steps to find LCM of fractions a/b and c/d:
  1. Find the LCM of b and d = LCM(b,d)
  2. Multiply the numerator and denominator of both the fractions by LCM(b,d), After this multiplication, denominator of both fractions are same.
  3. Find LCM of the new numerators and the answer is LCM(new numerators)/LCM(b,d).
Here is the MATLAB implementation of the above algorithm:
a = 3/10;
b = 4/7;
[na, da] = rat(a);
[nb, db] = rat(b);
d_lcm = (da * db) / gcd(da, db);
an = na * d_lcm / da;
bn = nb * d_lcm / db;
num_lcm = an*bn / gcd(an,bn);
lcm_result = num_lcm/d_lcm;
Hope this helps!

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by