Calculate remainder on Casio fx-991 ES Calculator

67.1k Views Asked by At

Is it possible or not to calculate remainder through use of Casio fx-991 ES Calculator. If possible then how

for example :- I have to calculate remainder of 2345763534 rem 24 and other media except calculator is forbidden. If this isn't possible through calculator then any short cut method are also appreciated.

3

There are 3 best solutions below

2
On BEST ANSWER

Use the calculator to find $$ 2345763534/ 24 = 97740147.25 $$ That is the remainder is $$ 2345763534 - 24\cdot 97740147 = \dots $$

1
On

I thought that I'd add the answer I found here as I found it more helpful than the current answer.

I am afraid that this calculator don't have any modulo function. However there is quite simple way how to count modulo using display mode ab/c (instead of traditional d/c).

How to switch display mode to ab/c:

  • go to settings (Shift + mode)
  • press arrow down (to view more settings)
  • select "ab/c" (number 1).

Then do your calculation (in comp mode), like 50 / 3 and you will see 16 2/3 thus mod is 2 or try 54 / 7 which is 7 5/7 (mod is 5). If you don't see any fraction then mod is 0 like 50 / 5 is 10.

The remainder fraction is shown in reduced form, so 60 / 8 will result in 7 1/2. Remainder is 1/2 which is 4/8 and mod is 4.

EDIT: Note that this doesn't work for everything. Especially if the fraction can be simplified (e.g. 6 mod 4). But I still believe it's a useful shortcut to keep in mind, just make sure the fraction has the modulus as the denominator.

2
On

I know this is an old post, but you could do this on any calculator

5 % 4 = ? (5 mod 4)

5/4 = 1.25 to get the decimal form of the remainder subtract the number on left of decimal from result of 5/4

1.25 - 1 = .25 <-- the remainder .25 * 4 = 1 <-- remainder converted from decimal form

so...

5 mod 4 = 1

61 % 9 = ?

61/9 = 6.7777777777777777777777777777778

6.7777777777777777777777777777778 - 6

= 0.7777777777777777777777777777778

9 * 0.7777777777777777777777777777778 = 7

so 61 % 9 = 7

With this method, there might be cases where the multiplication at the end results in another decimal but this is due to rounding so just round up or down to the nearest whole number and that's your remainder

ie: on a cheap calculator with not so many decimal places

61 % 9 = ?

61/9 = 6.78

6.78 - 6 = 0.78

9 * 0.78 = 7.02

round 7.02 to whole # = 7

61 % 9 = 7

12 % 3 = ? 12/3 = 4.00 4.00 - 4 = 0 0 * 3 = 0 12 % 3 = 0

Note: This method doesn't work for negative integers