Rankbit System
JEE Physics: Waves (+15.5%) | Electrostatics: Concentric Shells (-29.7%) | Modern Physics: Photoelectric Clones (+34.2%) | Mathematics: Definite Integrals (+18.1%) | Chemistry: Coordination Splitting (-11.4%) | JEE Physics: Waves (+15.5%) | Electrostatics: Concentric Shells (-29.7%) | Modern Physics: Photoelectric Clones (+34.2%) | Mathematics: Definite Integrals (+18.1%) | Chemistry: Coordination Splitting (-11.4%)

Let m and n , (m < n) be two 2-digit numbers. Then the total numbers of pairs (m, n) , such that gcd(m, n) = 6 , is

Numerical Answer Type:
Enter a numerical value Answer: 64 to 64 +4 marks

Solution & Explanation

### Core Logic Since gcd(m,n) = 6, we can define m = 6a and n = 6b, where a and b are coprime integers (gcd(a,b) = 1). Given that m < n, we must have a < b. Both m and n are two-digit numbers, which means 10 le m, n le 99: 10 le 6a le 99 implies 1.66 le a le 16.5 implies 2 le a le 16 10 le 6b le 99 implies 1.66 le b le 16.5 implies 2 le b le 16 Thus, we need to count all coordinate integer pairs (a,b) satisfying 2 le a < b le 16 such that gcd(a,b) = 1. ### Step 1: Systematic Counting by Fixed Value of 'a' Let's list the valid values for b for each choice of a in the range [2, 16]: - a=2: b in \3, 5, 7, 9, 11, 13, 15\ implies 7 text pairs - a=3: b in \4, 5, 7, 8, 10, 11, 13, 14, 16\ implies 9 text pairs - a=4: b in \5, 7, 9, 11, 13, 15\ implies 6 text pairs - a=5: b in \6, 7, 8, 9, 11, 12, 13, 14, 16\ implies 9 text pairs - a=6: b in \7, 11, 13\ implies 3 text pairs - a=7: b in \8, 9, 10, 11, 12, 13, 15, 16\ implies 8 text pairs - a=8: b in \9, 11, 13, 15\ implies 4 text pairs - a=9: b in \10, 11, 13, 14, 16\ implies 5 text pairs - a=10: b in \11, 13\ implies 2 text pairs - a=11: b in \12, 13, 14, 15, 16\ implies 5 text pairs - a=12: b in \13\ implies 1 text pair - a=13: b in \14, 15, 16\ implies 3 text pairs - a=14: b in \15\ implies 1 text pair - a=15: b in \16\ implies 1 text pair ### Step 2: Final Summation Summing up all valid ordered coordinate tracking entries: textTotal = 7 + 9 + 6 + 9 + 3 + 8 + 4 + 5 + 2 + 5 + 1 + 3 + 1 + 1 = 64 ### Pattern Recognition For modular subset counts, convert your boundary targets to factor conditions directly. Listing terms by prime factors reduces counting errors compared to checking every pair from scratch. ### Evaluation Rubric / Model Answer null ### Chapter Mix Class 11 Mathematics: Permutations and Combinations Class 11 Mathematics: Number Theory

Reference Study Guides

More Permutations and Combinations Previous-Year Questions

Q66 2025 Arrangements
The number of ways, in which the letters A, B, C, D, E can be placed in the 8 boxes of the figure below so that no row remains empty and at most one letter can be placed in a box, is:
Boxes layout diagram for Q66 - JEE Main 2025 Evening
The grid diagram shows 8 boxes arranged in three horizontal rows of sizes 3, 2, and 3.
  • A. 5880
  • B. 960
  • C. 840
  • D. 5760

Solution

### Related Formula textNumber of arrangements of r text items in n text boxes = binomnr cdot r! ### Core Logic This is a permutations problem with row constraints. We compute the total arrangements of placing 5 distinct letters into 8 boxes and then subtract the invalid cases where one or more rows are left completely empty. ### Step 1: Compute total unrestricted arrangements The grid has a total of 8 boxes. We have 5 distinct letters (A, B, C, D, E): textTotal unrestricted arrangements = binom85 cdot 5! = 56 cdot 120 = 6720 ### Step 2: Identify and subtract the invalid empty-row cases Let the rows be R_1, R_2, and R_3, with box counts 3, 2, and 3 respectively. Since we must distribute 5 letters, it is impossible for 2 rows to be empty simultaneously (as the remaining single row would have at most 3 boxes, which cannot fit 5 letters). Thus, we only subtract cases where exactly one row is empty: - Case 1: Row R_1 (3 boxes) is empty. The 5 letters must go to the remaining 5 boxes of R_2 and R_3: textWays = binom55 cdot 5! = 120 - Case 2: Row R_3 (3 boxes) is empty. Same as Case 1, the 5 letters must go to the remaining 5 boxes of R_1 and R_2: textWays = binom55 cdot 5! = 120 - Case 3: Row R_2 (2 boxes) is empty. The 5 letters must go to the remaining 6 boxes of R_1 and R_3: textWays = binom65 cdot 5! = 6 cdot 120 = 720 ### Step 3: Calculate the final valid arrangements Subtracting all empty-row cases from the total arrangements: textValid arrangements = 6720 - (120 + 120 + 720) = 6720 - 960 = 5760 ### Pattern Recognition Inclusion-Exclusion Principle: For distribution problems with simple boundary exclusions, subtracting the complement set (invalid configurations) is mathematically much cleaner than calculating all possible partitions of row assignments. ### Evaluation Rubric / Model Answer null ### Chapter Mix Class 11 Mathematics: Permutations and Combinations
Q 2025 Exponent of Prime in a Factorial
The largest n in mathbbN such that 3^n divides 50! is:
  • A. 21
  • B. 22
  • C. 20
  • D. 23

Solution

### Related Formula The exponent of a prime p in N! is given by Legendre's formula: E_p(N!) = left[fracNpright] + left[fracNp^2right] + left[fracNp^3right] + dots ### Core Logic To find the highest power of 3 that divides 50!, calculate the sum of the greatest integer functions for successive powers of 3 up to 50. ### Step 1: Computation Applying the formula for N = 50 and p = 3: E_3(50!) = left[frac503right] + left[frac509right] + left[frac5027right] + left[frac5081right] E_3(50!) = 16 + 5 + 1 + 0 = 22 ### Pattern Recognition Quickly divide by powers of 3: 50/3 rightarrow 16; 16/3 rightarrow 5; 5/3 rightarrow 1. Summing them up yields 16 + 5 + 1 = 22 instantly. ### Evaluation Rubric / Model Answer null ### Chapter Mix Class 11 Mathematics: Permutations and Combinations
Q 2025 Permutation of Multiset
The number of sequences of ten terms, whose terms are either 0 or 1 or 2, that contain exactly five 1s and exactly three 2s, is equal to:
  • A. 360
  • B. 45
  • C. 2520
  • D. 1820

Solution

### Related Formula The number of permutations of n objects where p are of one kind, q are of another kind, and r are of a third kind is: textTotal Permutations = fracn!p! cdot q! cdot r! ### Core Logic The sequence has 10 terms chosen from \0, 1, 2\. It contains exactly five 1s and exactly three 2s. This leaves exactly 10 - 5 - 3 = 2 terms to be filled by 0s. ### Step 1: Arrangement Calculation We need to arrange five 1s, three 2s, and two 0s. The number of unique sequences is: textTotal Sequences = frac10!5! cdot 3! cdot 2! textTotal Sequences = frac10 times 9 times 8 times 7 times 63 times 2 times 1 times 2 times 1 = 2520 ### Pattern Recognition Note that sequences can start with 0 since it asks for general sequences of ten terms rather than a standard non-zero multi-digit number representation. ### Evaluation Rubric / Model Answer null ### Chapter Mix Class 11 Mathematics: Permutations and Combinations
Q58 2025 Geometry Problems
Line L_1 of slope 2 and line L_2 of slope frac12 intersect at the origin O. In the first quadrant, P_1, P_2, dots, P_12 are 12 points on line L_1 and Q_1, Q_2, dots, Q_9 are 9 points on line L_2. Then the total number of triangles, that can be formed having vertices at three of the 22 points O, P_1, P_2, dots, P_12, Q_1, Q_2, dots, Q_9, is:
  • A. 1080
  • B. 1134
  • C. 1026
  • D. 1188

Solution

### Related Formula Number of ways to choose 3 points out of N points is ^N C_3. If any points are collinear, choosing 3 points from those collinear points will form a straight line instead of a triangle. ### Core Logic Total number of points = 1 (origin O) + 12 (on L_1) + 9 (on L_2) = 22 points. Triangles are formed by choosing any 3 points except those that are collinear. ### Step 1: Identifying Collinear Sets 1. The set of points lying on L_1 includes O, P_1, dots, P_12, which is 13 collinear points. Number of collinear combinations = ^13 C_3 2. The set of points lying on L_2 includes O, Q_1, dots, Q_9, which is 10 collinear points. Number of collinear combinations = ^10 C_3 ### Step 2: Triangle Calculation Total Triangles = Total choices of 3 points - Collinear choices on L_1 - Collinear choices on L_2 textTotal = ^22 C_3 - ^13 C_3 - ^10 C_3 Calculating individual combinations: - ^22 C_3 = frac22 times 21 times 203 times 2 times 1 = 1540 - ^13 C_3 = frac13 times 12 times 113 times 2 times 1 = 286 - ^10 C_3 = frac10 times 9 times 83 times 2 times 1 = 120 textTriangles = 1540 - 286 - 120 = 1134 ### Pattern Recognition Alternatively, count using partition combinations to avoid large factorials: textTriangles = (^12 C_2 times ^9 C_1) + (^9 C_2 times ^12 C_1) + (1 times ^12 C_1 times ^9 C_1) = (66 times 9) + (36 times 12) + (108) = 594 + 432 + 108 = 1134 ### Evaluation Rubric / Model Answer null ### Chapter Mix Class 11 Mathematics: Permutations and Combinations
Q57 2025 Practical Problems on Combinations
From a group of 7 batsmen and 6 bowlers, 10 players are to be chosen for a team, which should include atleast 4 batsmen and atleast 4 bowlers. One batsmen and one bowler who are captain and vice-captain respectively of the team should be included. Then the total number of ways such a selection can be made, is
  • A. 165
  • B. 155
  • C. 145
  • D. 135

Solution

### Related Formula Number of ways to select r items from a pool of n distinct objects: ^nC_r = fracn!r!(n-r)! ### Core Logic Total required players = 10. Constraints: - Minimum 4 batsmen and minimum 4 bowlers. - 1 specific batsman (captain) and 1 specific bowler (vice-captain) are fixed (already selected). Remaining selection required: - Total players left to choose = 10 - 2 = 8 players. - Available remaining pool: - Batsmen available = 7 - 1 = 6 batsmen. - Bowlers available = 6 - 1 = 5 bowlers. Adjusted structural constraints for the remaining 8 slots: - Needs at least 4 - 1 = 3 more batsmen. - Needs at least 4 - 1 = 3 more bowlers. ### Step 1: Set Up Case Combinations Let x be the number of additional batsmen and y be the number of additional bowlers selected, where x + y = 8 with x ge 3 and y ge 3. Possible case matches: - **Case 1**: 5 batsmen and 3 bowlers (x=5, y=3) - **Case 2**: 4 batsmen and 4 bowlers (x=4, y=4) - **Case 3**: 3 batsmen and 5 bowlers (x=3, y=5) ### Step 2: Calculate Each Case Value 1. For Case 1: textWays = ^6C_5 times ^5C_3 = 6 times 10 = 60 2. For Case 2: textWays = ^6C_4 times ^5C_4 = 15 times 5 = 75 3. For Case 3: textWays = ^6C_3 times ^5C_5 = 20 times 1 = 20 ### Step 3: Compute Total Ways Sum the combinations across all valid exhaustive paths: textTotal Ways = 60 + 75 + 20 = 155 ### Pattern Recognition When specific roles (like captain/vice-captain) are strictly forced into the selection group, always remove them from both the operational choice pool size (n) and the final destination requirement count (r) before designing your target case distributions. ### Evaluation Rubric / Model Answer null ### Chapter Mix Class 11 Mathematics: Permutations and Combinations

More Permutations and Combinations Questions — jee_main_2025_04_april_evening

Practice all Permutations and Combinations previous-year questions →

YOUR FIRST PREP STEP STARTS HERE

We Map Every Repeating Question in Competitive Exams.

Say goodbye to generic mock test fatigue. RankBit uses smart analysis to group past exam questions into their foundational Repeating Question Types. Find chapter weightage, track repeating questions, and score higher with targeted practice.

Select Your Target Exam

Choose an exam track below to find formulas per chapter and patterns.

Syncing Exam Intelligence

Mapping formulas and patterns across all tracks…

PATH A — FULL LENGTH PRACTICE

Full Mock Test Hub

Simulate real NTA exam conditions with fully tracked mocks. Time yourself against past papers.

Under Development
PATH B — TARGETED PRACTICE

Topic-wise Practice Hub

Practice past-year questions one chapter at a time. Pick an exam → subject → chapter and get every PYQ for that topic — pulled together from all past papers — with the chapter's key formulas alongside.

Loading Questions... Browse Topics
Latest from the Blog
View all →

Loading articles...