. Find a MATLAB built in function that is used to find the lowest common denominator of fractions.

3 views (last 30 days)
Hello, I new to Matlab and I need help with this one problem.
"Find a MATLAB built in function that is used to find the lowest common denominator of fractions. Then use that function to show that the lowest common denominator of (hint, your input and solution will only contain one denominator values.'
  4 Comments
David Durost
David Durost on 23 Aug 2019
Okay, I 've tried
x=(1/4);
y=(1/10);
L=lcd(x,y);
and
L=lcd(4,10);
built in(function,4,10);
I would really appericate help with the syntax?

Sign in to comment.

Answers (3)

David Durost
David Durost on 23 Aug 2019
I would say thanks however, 'com=1cm(d1,d2); is a Unexpected MATLAB expression. I don't appericate the concending remark of how easy this code is. It may be easy for you but not everyone can be a genious like you.
  3 Comments
Walter Roberson
Walter Roberson on 23 Aug 2019
lcm(4,10) is 20. What do you get when you multiply 1/4 by 20? How many 20'th is 1/4 ? What do you get when you multiply 1/10 by 20? How many 20'th is 1/10 ?

Sign in to comment.


Walter Roberson
Walter Roberson on 23 Aug 2019
[n1, d1] = rat(1/4);
[n2, d2] = rat(1/10);
com = lcm(d1, d2);
Now that you have the least common multple of the denominators, you can calculate the equivalent fractions. The code is quite easy, but I will not provide it as you are obviously working on an assignment.

Cate Wallace
Cate Wallace on 24 Feb 2021
lcm(d1,d2)
Hope this helps!

Categories

Find more on Programming in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!