DEBUG_INFO: title=Number System, type=object, isArray=, length=5
Understand the family tree of numbers to avoid theoretical traps.
- Real Numbers: Everything on the number line.
- Rational (Q): Can be p/q (e.g., 2/3, 5). Terminating or Repeating decimals.
- Irrational: Non-terminating, Non-repeating (e.g., 2тАЛ,╧А).
- Integers (Z): ...-2, -1, 0, 1, 2...
- Prime Numbers: Only two factors (1 and itself). 2 is the only even prime. 1 is NEITHER prime NOR composite.
Example:
Q: Is ╧А rational or irrational? Solution: ╧А (3.14159...) never ends and never repeats pattern. It is Irrational. However, 22/7 is Rational (approximation). To find the last digit of an, focus only on the unit digit of base and dividing power by 4.
- 0, 1, 5, 6: Same unit digit always. (5nтЖТ5, 6nтЖТ6)
- 4, 9: Cycle of 2. (4oddтЖТ4,4evenтЖТ6; 9oddтЖТ9,9evenтЖТ1)
- 2, 3, 7, 8: Cycle of 4. Divide power by 4, take remainder (R). If R=0, use power 4.
Example:
Q: Find unit digit of 233. Solution: Step 1: Divide power 33 by 4. Remainder = 1.
Step 2: 21=2.
Ans: 2. Check divisibility without dividing.
- 3 & 9: Sum of digits must be divisible by 3 or 9.
- 4: Last 2 digits divisible by 4.
- 8: Last 3 digits divisible by 8.
- 11: (Sum of Odd places) - (Sum of Even places) = 0 or multiple of 11.
- 7, 11, 13: Subtract last 3 digits from remaining part. Result divisible by 7/11/13?
Example:
Q: Is 9182736 divisible by 9?
Solution: Sum: 9+1+8+2+7+3+6=36.
36 is divisible by 9.
Yes. Solve an/d instantly.
- Negative Remainder: If remainder is large, take negative. (e.g., 17/18oRemтИТ1).
- Fermat's Little Theorem: apтИТ1/poRem1 (if p is prime).
- Wilson's Theorem: (pтИТ1)!/poRem(pтИТ1).
Example:
Q: Find remainder: 17200div18. Solution: 17div18oтИТ1.
(тИТ1)200=+1.
Ans: 1. Decompose numbers into prime factors (N=apbqcr).
- Total Factors: (p+1)(q+1)(r+1).
- HCF: Lowest power of common primes.
- LCM: Highest power of all primes.
- Product Rule: HCFimesLCM=N1тАЛimesN2тАЛ.
Example:
Q: Factors of 24?
Solution: 24=23imes31.
Factors = (3+1)(1+1)=4imes2=8.