Jump to content

Finding the remainder after splitting the denominator? (eg a / (b * c)

Featured Replies

If you have like say for instance in assembly idiv which gives you how many times it divides and then the remainder you can of course iterate to divide two numbers all the way through (or as far as you want). What I want to do is divide a number by b*c (as opposed to what b * c actually evaluates to). You can divide a by b and then that number by c to get how many times bc goes into a but I can't figure out how to get the remainder.

 

Like if you divide 11 by 6 you can represent it 11/(3*2).

 

11 / 6 = 1 remainder 5.

11/3 = 3 remainder 2. (a/b = x, r)

3 / 2 = 1 remainder 1. (x/c = x-2, r-2)

 

So we know it divides once but we have two remainders: 1, and 2, and I cannot figure out how to get 5 as your actual remainder.

 

(I'm pretty sure multiplying 3 * 1 + 1 * 2 doesn't work btw on all numbers)

 

 

edit--

Alright that was kind of dumb. It's obviously a - (bc*x). My problem was in making data smaller I don't want to multiply b times c.

Not really sure what you are trying to achieve, but mayhaps this helps:

- I redefine your writing style into something that imho makes a little more sense: 11/6 = 1 remainder 5 --> 11/6 = 1 remainder 5/6 = 1 + 5/6.

 

- Assume the problem a/(b*c).

- Define a/b =: x remainder y/b.

- => a/(bc) = (x + y/b)/c.

- Define x/c =: X remainder Y/c.

- => a/(bc) = X + (Y + y/b)/c. Note that and why the 2nd added is <1.

- => a/(bc) = X + (Y*b + y) / (bc) meaning a/(bc) = X remainder (Y*b + y).

 

EDIT: Your on my "let him think it through himself for a few minutes"-list now :D.

Archived

This topic is now archived and is closed to further replies.

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.