Return to Video

Least Common Multiple

  • 0:02 - 0:05
    Hello, I'm now going to do some practice least common
  • 0:05 - 0:07
    multiple problems for you.
  • 0:07 - 0:09
    After I do a couple of these problems you should be able
  • 0:09 - 0:11
    to go to the least common multiple module and do
  • 0:11 - 0:12
    some of them yourselves.
  • 0:14 - 0:23
    Let's say the least common multiple of 10 and 8.
  • 0:23 - 0:24
    I'm going to show you two ways to do a least
  • 0:24 - 0:26
    common multiple problem.
  • 0:26 - 0:28
    One I call just the brute force method and I think it's good
  • 0:28 - 0:30
    because it'll give you a good sense of what least common
  • 0:30 - 0:32
    multiple is and then I'll also show you what I call the
  • 0:32 - 0:34
    more elegant method.
  • 0:34 - 0:37
    So the brute force method is literally just to write down
  • 0:37 - 0:40
    all the multiples of the two numbers and figure out
  • 0:40 - 0:43
    what the least common multiple they have is.
  • 0:43 - 0:45
    So let's write all the multiples of 10.
  • 0:45 - 0:47
    So 10 times 1 is 10.
  • 0:47 - 0:49
    10 times 2 is 20.
  • 0:49 - 0:55
    30, 40, 50, 60, whoops.
  • 0:55 - 0:56
    Not 67.
  • 0:56 - 1:02
    70, 80, 90, 100 and so on.
  • 1:02 - 1:13
    Multiples of 8 are 8, 16, 24, 32, 40, 48,
  • 1:13 - 1:18
    64, 72, 80 and so on.
  • 1:18 - 1:19
    So let's see.
  • 1:19 - 1:21
    Let's see if we can identify what the common multiples are.
  • 1:21 - 1:27
    Well, immediately I see that 10 times 4 is 40 and 8 times 5 is
  • 1:27 - 1:29
    also 40, so that's a common multiple.
  • 1:29 - 1:34
    If we keep going we see that 10 times 8 is 80 and 8
  • 1:34 - 1:37
    times 10 is also 80.
  • 1:37 - 1:39
    And if we were to keep going we would also see that
  • 1:39 - 1:41
    120 is a common multiple.
  • 1:41 - 1:43
    We'd see that 160 is a common multiple.
  • 1:44 - 1:47
    But out of the ones we listed 40 and 80 are
  • 1:47 - 1:48
    our common multiples.
  • 1:48 - 1:50
    And if we were to ask, what is the least common multiple?
  • 1:50 - 1:55
    Well, 40 is lower than 80, so we say 40 is the
  • 1:55 - 1:57
    least common multiple.
  • 1:57 - 2:00
    That's what I call the brute force method.
  • 2:00 - 2:02
    Now what I would say the elegant method is, is what you
  • 2:02 - 2:07
    do is you look at the factors of 10 and you say, well, the
  • 2:07 - 2:14
    factors of 10 are 1, 2, 5, and 10.
  • 2:14 - 2:22
    And the factors of 8 are 1, 2, 4, and 8.
  • 2:22 - 2:24
    And you say, what's the greatest common factor
  • 2:24 - 2:27
    of the two numbers?
  • 2:27 - 2:30
    Well, they all share the common factor one.
  • 2:30 - 2:33
    Every integer shares that common factor.
  • 2:33 - 2:35
    But the number 2.
  • 2:35 - 2:39
    They both share that common factor.
  • 2:39 - 2:45
    So what we can say is, is that the least common multiple of 10
  • 2:45 - 2:48
    and 8-- and this is the elegant way and it might not be obvious
  • 2:48 - 2:51
    to you why it works and I might do another module with you
  • 2:51 - 2:53
    to show you why this works.
  • 2:53 - 2:56
    But the least common multiple of two numbers is always equal
  • 2:56 - 3:00
    to the two numbers-- 8 times 10-- and the dot is this
  • 3:00 - 3:03
    another fancy way of writing times.
  • 3:03 - 3:08
    8 times 10 and then you divide that by the greatest
  • 3:08 - 3:12
    common factor of 8 and 10.
  • 3:12 - 3:16
    Well, 8 times 10 is 80, and the greatest common
  • 3:16 - 3:17
    factor of 8 and 10?
  • 3:17 - 3:19
    Well, we just figured that out.
  • 3:19 - 3:21
    That's 2.
  • 3:21 - 3:23
    So that equals 40.
  • 3:23 - 3:27
    In general, in my head, and you'll learn to do these
  • 3:27 - 3:28
    problems, in your head.
  • 3:28 - 3:30
    I tend to do it this first way.
  • 3:30 - 3:32
    I don't figure out what the greatest common factor is
  • 3:32 - 3:34
    and then I multiply the numbers and divide them.
  • 3:34 - 3:38
    Because for smaller numbers like 8 or 10 or two and 3, it's
  • 3:38 - 3:40
    pretty easy to just think about the multiples and figure out
  • 3:40 - 3:42
    the least common multiple.
  • 3:42 - 3:45
    But if you had really large numbers or if you're writing a
  • 3:45 - 3:48
    computer program, that had to deal with arbitrary numbers,
  • 3:48 - 3:51
    then you'd probably want to use the second method.
  • 3:51 - 3:54
    And if you're ever in doubt the second method always works just
  • 3:54 - 3:57
    to make sure you haven't overlooked some numbers in
  • 3:57 - 4:01
    using the method on the left.
Title:
Least Common Multiple
Description:

Example of figuring out the least common multiple of two nunmbers

more » « less
Video Language:
English
Duration:
04:01
michal.stevove edited English subtitles for Least Common Multiple
michal.stevove edited English subtitles for Least Common Multiple
Deepak Kaushik edited English subtitles for Least Common Multiple
Deepak Kaushik edited English subtitles for Least Common Multiple
Deepak Kaushik edited English subtitles for Least Common Multiple
Deepak Kaushik edited English subtitles for Least Common Multiple
Deepak Kaushik edited English subtitles for Least Common Multiple
booksforlife edited English subtitles for Least Common Multiple
Show all

English subtitles

Revisions