We need to find How many positive integers less than 500 exist such that when any of these is divided by 7 the remainder is 3 and when any of these is divided by 3 the remainder is 1?When the number (lets say n) is divided by 7 the remainder is 3Theory: Dividend = Divisor*Quotient + Remaindern -> Dividend
7 -> Divisor
a -> Quotient (Assume)
3 -> Remainder
=> n = 7*a + 3 = 7a + 3 ...(1)
When the number is divided by 3 the remainder is 1Let quotient = b
=> n = 3b + 1 ...(2)
=> 7a + 3 = 3b + 1
=> 3b = 7a + 2
=> b = \(\frac{7a + 2}{3}\)
Only those values of "a" which will give "b" also as an integer will give us the common values for the integer "n".
=> a = 1, 4, 7,... (so values of "a" are starting form 1 and increasing by 3)
(This follows a pattern of 3k - 2 ,
Watch this video of
Sequence to learn how to find this))
Now n has to be ≤ 500
=> 7a + 3 ≤ 500
=> 7a ≤ 497
=> a ≤ 71
=> 3k - 2 ≤ 71
=> 3k ≤ 73
=> k ≤ 24.3
=> 24 value of a or 24 values of n are possible
So,
Answer will be DHope it helps!
Watch the following video to learn the Basics of Remainders