3 solved HCF & LCM previous year questions (PYQs) from IPMAT Indore past year papers — attempt each and check the answer.
Free SolutionsNo Login3 Questions
Q1:ipmat indore 2020QA › HCF & LCMEasySA · TITA
In a division problem, the product of the quotient and the remainder is 24 while their sum is 10. If the divisor is 5 then the dividend is __________.
Enter your answer to attempt
The Setup: We are dealing with the foundational division algorithm: Dividend=(Divisor×Quotient)+Remainder. The absolute golden rule of division is that the remainder must be strictly non-negative and less than the divisor (0≤r<d). We need to min-max the given sum and product to find the exact values before plugging them in.
Step 1: Formulate the system of equations. Let the quotient be q and the remainder be r. The problem gives us their product q×r=24 and their sum q+r=10.
Step 2: Solve the quadratic substitution. You can substitute r=10−q into the product equation:
q(10−q)=2410q−q2=24q2−10q+24=0
Factoring this gives (q−6)(q−4)=0. The roots are 6 and 4. So, our variables {q,r} are exactly {6,4} - no other pair of numbers has this sum and product.
Step 3: Enforce the remainder rule. We are told the divisor is 5. By the laws of division, r<5. Between 6 and 4, only 4 satisfies this condition. Therefore, it is a hard lock that r=4 and q=6.
Step 4: Execute the final calculation. Substitute everything back into the core algorithm:
Dividend=(5×6)+4Dividend=30+4=34Final Answer: 34
Q2:ipmat indore 2022QA › HCF & LCMEasyMCQ · MCQ
When the square of the difference of two natural numbers is subtracted from the square of the sum of the same two numbers and the result is divided by four, we get
Athe product of the LCM and HCF of the two numbers
Bthe HCF of the two numbers
Cthe LCM of the two numbers
Dthe square of the product of the two numbers
Pick an option to attempt
The Setup: Two natural numbers are subjected to a specific string of algebraic operations. We must simplify the operations to find the resulting identity.
Step 1: Map the text to algebraic formulation.
Let the two natural numbers be a and b.
'Square of the difference' = (a−b)2.
'Square of the sum' = (a+b)2.
The text requires: 4(a+b)2−(a−b)2.
Step 2: Expand and simplify the expression.
Expand the squares:
4(a2+2ab+b2)−(a2−2ab+b2)
Distribute the negative sign:
4a2+2ab+b2−a2+2ab−b2
The squares cancel out perfectly:
44ab=ab
The result is simply the direct mathematical product of the two original natural numbers.
Step 3: Relate to the Number System rules.
A fundamental property of arithmetic states that the product of any two natural numbers equals the product of their Least Common Multiple (LCM) and their Highest Common Factor (HCF).
a×b=LCM(a,b)×HCF(a,b)Final Answer: the product of the LCM and HCF of the two numbers
Q3:ipmat indore 2026QA › HCF & LCMHardMCQ · MCQ
The number of integers n such that 1≤n≤107 and gcd(n,107)=103 is ___
A3000
B2000
C5000
D4000
Pick an option to attempt
The Setup: This is a Number System boss fight focusing on GCD (Greatest Common Divisor) and coprime properties (Euler's Totient function logic). The meta is to factor out the mandatory GCD from our target variable, isolate the remaining multiplier, and then count how many valid integers exist within the new boundary that share absolutely zero prime factors with our base. Math, logic, and syntax are locked in and double-verified.
Step 1: Factor out the mandatory GCD.
We know the target condition is gcd(n,107)=103. This means n absolutely must be a multiple of 103.
Let's define n as:
n=103⋅m
(where m is some positive integer multiplier).
**Step 2: Establish the new boundaries for m.**
The problem restricts the original variable to n≤107.
Let's substitute our new definition of n into this inequality to find the ceiling for m:
103⋅m≤107⟹m≤104
So, our multiplier m must be an integer from 1 to 104.
Step 3: Lock the coprime constraint.
Now, let's substitute n back into the original GCD equation to see what conditions m must satisfy:
gcd(103⋅m,107)=103⋅gcd(m,104)
For the total expression to equal exactly 103, the remaining gcd portion must collapse to 1:
gcd(m,104)=1
This means m and 104 must be coprime (they cannot share any prime factors).
Step 4: Count the valid coprime spawns.
The prime factorization of 104 is 24⋅54. The only prime factors are 2 and 5.
Therefore, for m to be coprime to 104, it cannot be a multiple of 2 or 5.
We can use a basic Totient fraction to find the exact ratio of integers that survive this filter:
Fractionofvalidintegers=(1−21)(1−51)Fraction=21⋅54=52Step 5: Execute the final calculation.
Apply this valid fraction to our total possible pool of m values (104 or 10,000) to get the final count of valid n integers:
Requiredcount=10000×52Requiredcount=2000×2=4000Final Answer: 4000