MHT CET 2025 Mathematics Question Paper with Answer and Solution

795 QuestionsEnglishWith Solutions

MathematicsQ351400 of 795 questions

Page 8 of 11 · English

351
MathematicsMediumMCQMHT CET · 2025
$A$ fair $n$-faced die is rolled repeatedly until a number less than $n$ appears. If the mean of the number of tosses required is $\frac{n}{9}$,then $n=$ (where $n \in N$ ).
A
$4$
B
$6$
C
$8$
D
$10$

Solution

(D) Let $X$ be the random variable representing the number of tosses required to get a number less than $n$.
This follows a geometric distribution where the probability of success $p$ is the probability of getting a number from ${1, 2, \dots, n-1}$.
Thus,$p = \frac{n-1}{n}$.
The mean of a geometric distribution is given by $E[X] = \frac{1}{p}$.
Given $E[X] = \frac{n}{9}$,we have $\frac{1}{p} = \frac{n}{9}$.
Substituting $p = \frac{n-1}{n}$,we get $\frac{n}{n-1} = \frac{n}{9}$.
Since $n \in N$ and $n > 1$,we can divide by $n$ to get $\frac{1}{n-1} = \frac{1}{9}$.
Therefore,$n-1 = 9$,which implies $n = 10$.
352
MathematicsMediumMCQMHT CET · 2025
Bag $I$ contains $3$ red and $2$ green balls and Bag $II$ contains $5$ red and $3$ green balls. $A$ ball is drawn from one of the bags at random and it is found to be green. Then the probability that it is drawn from Bag $I$ is
A
$\frac{8}{31}$
B
$\frac{12}{31}$
C
$\frac{14}{31}$
D
$\frac{16}{31}$

Solution

(D) Let $E_1$ be the event of choosing Bag $I$ and $E_2$ be the event of choosing Bag $II$. Since the bag is chosen at random,$P(E_1) = P(E_2) = \frac{1}{2}$.
Let $G$ be the event of drawing a green ball.
Probability of drawing a green ball from Bag $I$ is $P(G|E_1) = \frac{2}{3+2} = \frac{2}{5}$.
Probability of drawing a green ball from Bag $II$ is $P(G|E_2) = \frac{3}{5+3} = \frac{3}{8}$.
Using Bayes' Theorem,the probability that the ball is drawn from Bag $I$ given that it is green is:
$P(E_1|G) = \frac{P(E_1)P(G|E_1)}{P(E_1)P(G|E_1) + P(E_2)P(G|E_2)}$
$P(E_1|G) = \frac{\frac{1}{2} \times \frac{2}{5}}{\frac{1}{2} \times \frac{2}{5} + \frac{1}{2} \times \frac{3}{8}}$
$P(E_1|G) = \frac{\frac{1}{5}}{\frac{1}{5} + \frac{3}{16}} = \frac{\frac{1}{5}}{\frac{16+15}{80}} = \frac{1}{5} \times \frac{80}{31} = \frac{16}{31}$.
353
MathematicsMediumMCQMHT CET · 2025
$A$ doctor assumes that a patient has one of three diseases $d_1, d_2,$ or $d_3$. Before any test,he assumes an equal probability for each disease. He carries out a test that will be positive with probability $0.7$ if the patient has disease $d_1$,$0.5$ if the patient has disease $d_2$,and $0.8$ if the patient has disease $d_3$. Given that the outcome of the test was positive,what is the probability that the patient has disease $d_2$?
A
$\frac{1}{4}$
B
$\frac{1}{2}$
C
$\frac{1}{5}$
D
$\frac{1}{7}$

Solution

(A) Let $E_1, E_2, E_3$ be the events that the patient has diseases $d_1, d_2, d_3$ respectively. Since the probabilities are equal,$P(E_1) = P(E_2) = P(E_3) = \frac{1}{3}$.
Let $A$ be the event that the test is positive.
Given probabilities are $P(A|E_1) = 0.7$,$P(A|E_2) = 0.5$,and $P(A|E_3) = 0.8$.
We need to find $P(E_2|A)$.
By Bayes' Theorem,$P(E_2|A) = \frac{P(E_2)P(A|E_2)}{P(E_1)P(A|E_1) + P(E_2)P(A|E_2) + P(E_3)P(A|E_3)}$.
Substituting the values: $P(E_2|A) = \frac{\frac{1}{3} \times 0.5}{\frac{1}{3} \times 0.7 + \frac{1}{3} \times 0.5 + \frac{1}{3} \times 0.8}$.
$P(E_2|A) = \frac{0.5}{0.7 + 0.5 + 0.8} = \frac{0.5}{2.0} = \frac{5}{20} = \frac{1}{4}$.
354
MathematicsMediumMCQMHT CET · 2025
$A$ fair coin is tossed a fixed number of times. If the probability of getting $5$ tails is same as the probability of getting $7$ tails,then the probability of getting $3$ tails is
A
$\frac{44}{2^{13}}$
B
$\frac{55}{2^{10}}$
C
$\frac{55}{2^{13}}$
D
$\frac{44}{2^{10}}$

Solution

(B) Let $n$ be the number of tosses. The probability of getting $k$ tails in $n$ tosses is given by the binomial distribution formula: $P(X=k) = \binom{n}{k} (\frac{1}{2})^n$.
Given that $P(X=5) = P(X=7)$,we have $\binom{n}{5} (\frac{1}{2})^n = \binom{n}{7} (\frac{1}{2})^n$.
This implies $\binom{n}{5} = \binom{n}{7}$.
Using the property $\binom{n}{r} = \binom{n}{n-r}$,we know that if $\binom{n}{a} = \binom{n}{b}$,then either $a=b$ or $a+b=n$.
Since $5 \neq 7$,we must have $n = 5+7 = 12$.
Now,we need to find the probability of getting $3$ tails,which is $P(X=3) = \binom{12}{3} (\frac{1}{2})^{12}$.
Calculating $\binom{12}{3} = \frac{12 \times 11 \times 10}{3 \times 2 \times 1} = 220$.
Thus,$P(X=3) = 220 \times \frac{1}{2^{12}} = \frac{220}{4096} = \frac{55}{1024} = \frac{55}{2^{10}}$.
355
MathematicsMediumMCQMHT CET · 2025
If $X \sim B(n, p)$ then $\frac{P(X=k)}{P(X=k-1)}=$
A
$\frac{n-k}{k-1} \cdot \frac{p}{q}$
B
$\frac{n-k+1}{k+1} \cdot \frac{p}{q}$
C
$\frac{n+1}{k} \cdot \frac{q}{p}$
D
$\frac{n-k+1}{k} \cdot \frac{p}{q}$

Solution

(D) For a binomial distribution $X \sim B(n, p)$,the probability mass function is given by $P(X=k) = \binom{n}{k} p^k q^{n-k}$,where $q = 1-p$.
We need to find the ratio $\frac{P(X=k)}{P(X=k-1)}$.
$P(X=k) = \frac{n!}{k!(n-k)!} p^k q^{n-k}$
$P(X=k-1) = \frac{n!}{(k-1)!(n-k+1)!} p^{k-1} q^{n-k+1}$
Taking the ratio:
$\frac{P(X=k)}{P(X=k-1)} = \frac{n!}{k!(n-k)!} p^k q^{n-k} \cdot \frac{(k-1)!(n-k+1)!}{n! p^{k-1} q^{n-k+1}}$
$= \frac{(n-k+1)!}{(n-k)!} \cdot \frac{(k-1)!}{k!} \cdot \frac{p^k}{p^{k-1}} \cdot \frac{q^{n-k}}{q^{n-k+1}}$
$= (n-k+1) \cdot \frac{1}{k} \cdot p \cdot \frac{1}{q}$
$= \frac{n-k+1}{k} \cdot \frac{p}{q}$
Thus,the correct option is $D$.
356
MathematicsMediumMCQMHT CET · 2025
If $X$ is a binomial variable with range $\{0, 1, 2, 3, 4\}$ and $P(X=3) = 3P(X=4)$,then the parameter $p$ of the binomial distribution is:
A
$\frac{1}{4}$
B
$\frac{3}{4}$
C
$\frac{1}{3}$
D
$\frac{4}{7}$

Solution

(D) For a binomial distribution,the probability mass function is given by $P(X=k) = \binom{n}{k} p^k q^{n-k}$,where $n=4$ and $q=1-p$.
Given $P(X=3) = 3P(X=4)$,we substitute the values:
$\binom{4}{3} p^3 q^1 = 3 \binom{4}{4} p^4 q^0$
$4 p^3 q = 3(1) p^4$
Since $p \neq 0$,we can divide both sides by $p^3$:
$4q = 3p$
Substitute $q = 1-p$:
$4(1-p) = 3p$
$4 - 4p = 3p$
$4 = 7p$
$p = \frac{4}{7}$
Thus,the correct option is $D$.
357
MathematicsMediumMCQMHT CET · 2025
$A$ fair coin is tossed $99$ times. If $X$ is the number of times head occurs,then $P[X=r]$ is maximum when $r=$
A
$48$
B
$49$
C
$50$
D
$51$

Solution

(B) The random variable $X$ follows a binomial distribution $B(n, p)$ where $n = 99$ and $p = 0.5$.
For a binomial distribution,the probability $P[X=r]$ is maximum when $r$ is the mode.
If $(n+1)p$ is an integer,then there are two modes at $r = (n+1)p$ and $r = (n+1)p - 1$.
If $(n+1)p$ is not an integer,there is a unique mode at $r = \lfloor (n+1)p \rfloor$.
Here,$(n+1)p = (99+1) \times 0.5 = 100 \times 0.5 = 50$.
Since $50$ is an integer,the probability $P[X=r]$ is maximum at $r = 50$ and $r = 50 - 1 = 49$.
Looking at the options,$49$ is provided as a valid value for $r$ where the probability is maximum.
358
MathematicsMediumMCQMHT CET · 2025
If a random variable $X$ follows the Binomial distribution $B(10, p)$ such that $5 P(X=0) = P(X=1)$,then the value of $\frac{P(X=5)}{P(X=6)}$ is equal to
A
$\frac{6}{5}$
B
$\frac{2}{5}$
C
$\frac{12}{5}$
D
$\frac{1}{5}$

Solution

(C) The probability mass function of a Binomial distribution $B(n, p)$ is given by $P(X=k) = \binom{n}{k} p^k (1-p)^{n-k}$.
Given $n=10$,we have $P(X=k) = \binom{10}{k} p^k (1-p)^{10-k}$.
Given $5 P(X=0) = P(X=1)$:
$5 \binom{10}{0} p^0 (1-p)^{10} = \binom{10}{1} p^1 (1-p)^9$
$5(1-p) = 10p$
$5 - 5p = 10p \implies 15p = 5 \implies p = \frac{1}{3}$.
Thus,$q = 1-p = \frac{2}{3}$.
Now,we calculate the ratio $\frac{P(X=5)}{P(X=6)}$:
$\frac{P(X=5)}{P(X=6)} = \frac{\binom{10}{5} p^5 q^5}{\binom{10}{6} p^6 q^4} = \frac{\binom{10}{5}}{\binom{10}{6}} \cdot \frac{q}{p}$
$\binom{10}{5} = \frac{10 \times 9 \times 8 \times 7 \times 6}{5 \times 4 \times 3 \times 2 \times 1} = 252$
$\binom{10}{6} = \binom{10}{4} = \frac{10 \times 9 \times 8 \times 7}{4 \times 3 \times 2 \times 1} = 210$
$\frac{P(X=5)}{P(X=6)} = \frac{252}{210} \cdot \frac{2/3}{1/3} = \frac{6}{5} \cdot 2 = \frac{12}{5}$.
359
MathematicsMediumMCQMHT CET · 2025
Numbers are selected at random,one at a time from the two-digit numbers $00, 01, 02, \dots, 99$ with replacement. An event $E$ occurs only if the product of the two digits of a selected number is $24$. If four numbers are selected,then the probability that the event $E$ occurs at least $3$ times is:
A
$\frac{24}{(25)^4}$
B
$\frac{4}{(25)^4}$
C
$\frac{97}{(25)^4}$
D
$\frac{96}{(25)^4}$

Solution

(C) The total number of two-digit numbers from $00$ to $99$ is $100$.
Let $X$ be the number formed by digits $d_1 d_2$. The product $d_1 \times d_2 = 24$.
The possible pairs $(d_1, d_2)$ are $(3, 8), (4, 6), (6, 4), (8, 3)$.
Thus,there are $4$ such numbers: $38, 46, 64, 83$.
The probability of event $E$ occurring in a single trial is $p = \frac{4}{100} = \frac{1}{25}$.
The probability of event $E$ not occurring is $q = 1 - p = 1 - \frac{1}{25} = \frac{24}{25}$.
We select $n = 4$ numbers. Let $X$ be the number of times event $E$ occurs. $X$ follows a binomial distribution $B(n, p) = B(4, \frac{1}{25})$.
We need to find $P(X \ge 3) = P(X = 3) + P(X = 4)$.
$P(X = 3) = \binom{4}{3} p^3 q^1 = 4 \times (\frac{1}{25})^3 \times (\frac{24}{25}) = \frac{4 \times 24}{(25)^4} = \frac{96}{(25)^4}$.
$P(X = 4) = \binom{4}{4} p^4 q^0 = 1 \times (\frac{1}{25})^4 \times 1 = \frac{1}{(25)^4}$.
$P(X \ge 3) = \frac{96}{(25)^4} + \frac{1}{(25)^4} = \frac{97}{(25)^4}$.
360
MathematicsMediumMCQMHT CET · 2025
The probability that a certain kind of component will survive a given test is $\frac{2}{3}$. The probability that at most $2$ components out of $4$ tested will survive is
A
$\frac{31}{3^4}$
B
$\frac{32}{3^4}$
C
$\frac{33}{3^4}$
D
$\frac{35}{3^4}$

Solution

(C) Let $X$ be the number of components that survive the test. Here,$n = 4$ and $p = \frac{2}{3}$.
Then $q = 1 - p = 1 - \frac{2}{3} = \frac{1}{3}$.
$X$ follows a binomial distribution $B(n, p)$,so $P(X = k) = \binom{n}{k} p^k q^{n-k}$.
We need to find the probability that at most $2$ components survive,which is $P(X \le 2) = P(X = 0) + P(X = 1) + P(X = 2)$.
$P(X = 0) = \binom{4}{0} (\frac{2}{3})^0 (\frac{1}{3})^4 = 1 \times 1 \times \frac{1}{81} = \frac{1}{81}$.
$P(X = 1) = \binom{4}{1} (\frac{2}{3})^1 (\frac{1}{3})^3 = 4 \times \frac{2}{3} \times \frac{1}{27} = \frac{8}{81}$.
$P(X = 2) = \binom{4}{2} (\frac{2}{3})^2 (\frac{1}{3})^2 = 6 \times \frac{4}{9} \times \frac{1}{9} = \frac{24}{81}$.
Summing these probabilities: $P(X \le 2) = \frac{1}{81} + \frac{8}{81} + \frac{24}{81} = \frac{33}{81} = \frac{33}{3^4}$.
361
MathematicsMediumMCQMHT CET · 2025
$A$ fair coin is tossed $100$ times. The chance of getting a head an even number of times is
A
$\frac{1}{2}$
B
$\frac{1}{2^{100}}$
C
$\frac{1}{2} (1 - \frac{1}{2^{100}})$
D
$\frac{1}{2} (1 + \frac{1}{2^{100}})$

Solution

(A) Let $n = 100$ be the number of tosses and $p = q = \frac{1}{2}$ be the probability of getting a head or tail in a single toss.
The probability of getting exactly $r$ heads is given by the binomial distribution: $P(X = r) = \binom{n}{r} p^r q^{n-r} = \binom{100}{r} (\frac{1}{2})^{100}$.
We want the probability of getting an even number of heads,which is $S = \sum_{r \text{ is even}} \binom{100}{r} (\frac{1}{2})^{100}$.
Using the binomial expansion,we know $(p+q)^n = \sum_{r=0}^{n} \binom{n}{r} p^r q^{n-r} = 1$ and $(q-p)^n = \sum_{r=0}^{n} \binom{n}{r} (-p)^r q^{n-r}$.
For $p=q=\frac{1}{2}$,$(q-p)^n = 0^n = 0$ for $n \ge 1$.
Thus,$\sum_{r=0}^{n} \binom{n}{r} (\frac{1}{2})^n = 1$ and $\sum_{r=0}^{n} \binom{n}{r} (-1)^r (\frac{1}{2})^n = 0$.
Adding these two equations: $2 \sum_{r \text{ is even}} \binom{n}{r} (\frac{1}{2})^n = 1 + 0 = 1$.
Therefore,the probability of an even number of heads is $S = \frac{1}{2}$.
362
MathematicsMediumMCQMHT CET · 2025
If $x \sim B\left(6, \frac{1}{2}\right)$,then $p(|x-2| \leqslant 1)=$
A
$\frac{31}{32}$
B
$\frac{41}{64}$
C
$\frac{51}{64}$
D
$\frac{63}{64}$

Solution

(B) Given $x \sim B\left(n=6, p=\frac{1}{2}\right)$.
The probability mass function is $P(x=k) = \binom{6}{k} \left(\frac{1}{2}\right)^k \left(\frac{1}{2}\right)^{6-k} = \binom{6}{k} \left(\frac{1}{2}\right)^6 = \binom{6}{k} \frac{1}{64}$.
We need to find $P(|x-2| \leqslant 1)$.
$|x-2| \leqslant 1$ implies $-1 \leqslant x-2 \leqslant 1$,which simplifies to $1 \leqslant x \leqslant 3$.
So,we need to calculate $P(x=1) + P(x=2) + P(x=3)$.
$P(x=1) = \binom{6}{1} \frac{1}{64} = \frac{6}{64}$.
$P(x=2) = \binom{6}{2} \frac{1}{64} = \frac{15}{64}$.
$P(x=3) = \binom{6}{3} \frac{1}{64} = \frac{20}{64}$.
Summing these probabilities: $P(1 \leqslant x \leqslant 3) = \frac{6+15+20}{64} = \frac{41}{64}$.
363
MathematicsMediumMCQMHT CET · 2025
$A$ pair of fair dice is thrown $4$ times. If getting the same number on both dice is considered as a success,then the probability of exactly two successes is:
A
$\frac{25}{216}$
B
$\frac{25}{36}$
C
$\frac{25}{108}$
D
$\frac{25}{104}$

Solution

(A) When a pair of dice is thrown,the total number of outcomes is $6 \times 6 = 36$.
Success is defined as getting the same number on both dice. The favorable outcomes are $(1,1), (2,2), (3,3), (4,4), (5,5), (6,6)$,which are $6$ outcomes.
Thus,the probability of success $p = \frac{6}{36} = \frac{1}{6}$.
The probability of failure $q = 1 - p = 1 - \frac{1}{6} = \frac{5}{6}$.
We use the binomial distribution formula $P(X = k) = \binom{n}{k} p^k q^{n-k}$,where $n = 4$ and $k = 2$.
$P(X = 2) = \binom{4}{2} \left(\frac{1}{6}\right)^2 \left(\frac{5}{6}\right)^{4-2}$.
$P(X = 2) = 6 \times \left(\frac{1}{36}\right) \times \left(\frac{25}{36}\right)$.
$P(X = 2) = 6 \times \frac{25}{1296} = \frac{25}{216}$.
364
MathematicsMediumMCQMHT CET · 2025
The probability that a student is not a swimmer is $\frac{1}{5}$. The probability that out of $5$ students selected at random,$4$ are swimmers is:
A
$5 \times (\frac{4}{5})^4 \times \frac{1}{5}$
B
$(\frac{4}{5})^4 \times \frac{1}{5}$
C
$(\frac{4}{5})^5 \times \frac{1}{5}$
D
$(\frac{4}{5})^3 \times \frac{1}{5^2}$

Solution

(A) Let $p$ be the probability that a student is a swimmer and $q$ be the probability that a student is not a swimmer.
Given $q = \frac{1}{5}$,so $p = 1 - q = 1 - \frac{1}{5} = \frac{4}{5}$.
We have $n = 5$ students and we want to find the probability that $x = 4$ are swimmers.
Using the Binomial distribution formula $P(X = x) = ^nC_x \cdot p^x \cdot q^{n-x}$:
$P(X = 4) = ^5C_4 \cdot (\frac{4}{5})^4 \cdot (\frac{1}{5})^{5-4}$
$P(X = 4) = 5 \cdot (\frac{4}{5})^4 \cdot \frac{1}{5}$
$P(X = 4) = (\frac{4}{5})^4$
However,looking at the provided options,the expression $5 \times (\frac{4}{5})^4 \times \frac{1}{5}$ simplifies to $(\frac{4}{5})^4$. Since this is not explicitly listed as a simplified value,we select the form that matches the binomial expansion structure.
365
MathematicsMediumMCQMHT CET · 2025
The probability that a person is not a sportsperson is $\frac{1}{6}$. Then the probability that out of the $6$ members of the family,$5$ are sportspersons is
A
$\left(\frac{5}{6}\right)^5$
B
$6 \times \left(\frac{5}{6}\right)^5 \times \frac{1}{6}$
C
$5 \times \left(\frac{5}{6}\right)^6$
D
$\left(\frac{5}{6}\right)^6$

Solution

(B) Let $p$ be the probability that a person is a sportsperson and $q$ be the probability that a person is not a sportsperson.
Given $q = \frac{1}{6}$,so $p = 1 - q = 1 - \frac{1}{6} = \frac{5}{6}$.
We have $n = 6$ members in the family. We want to find the probability that $x = 5$ members are sportspersons.
Using the Binomial distribution formula $P(X = x) = ^nC_x \times p^x \times q^{n-x}$:
$P(X = 5) = ^6C_5 \times \left(\frac{5}{6}\right)^5 \times \left(\frac{1}{6}\right)^{6-5}$
$P(X = 5) = 6 \times \left(\frac{5}{6}\right)^5 \times \frac{1}{6}$
Thus,the probability is $6 \times \left(\frac{5}{6}\right)^5 \times \frac{1}{6}$.
366
MathematicsEasyMCQMHT CET · 2025
The probability that an event $A$ happens in a trial is $0.4$. If three independent trials are made,then the probability that $A$ happens at least once is
A
$0.784$
B
$0.874$
C
$0.754$
D
$0.752$

Solution

(A) Let $p$ be the probability of event $A$ happening in a single trial,so $p = 0.4$.
Let $q$ be the probability of event $A$ not happening in a single trial,so $q = 1 - p = 1 - 0.4 = 0.6$.
We are performing $n = 3$ independent trials.
The probability that event $A$ happens at least once is given by $P(X \geq 1) = 1 - P(X = 0)$.
Using the binomial distribution formula,$P(X = 0) = ^nC_0 \times p^0 \times q^n$.
Substituting the values,$P(X = 0) = 1 \times (0.4)^0 \times (0.6)^3 = 1 \times 1 \times 0.216 = 0.216$.
Therefore,$P(X \geq 1) = 1 - 0.216 = 0.784$.
367
MathematicsMediumMCQMHT CET · 2025
If a random variable $X$ follows the Binomial distribution $B(33, p)$ such that $3 P(X=0) = P(X=1)$,then the variance of $X$ is
A
$\frac{11}{144}$
B
$\frac{35}{48}$
C
$\frac{121}{48}$
D
$\frac{33}{144}$

Solution

(C) For a binomial distribution $B(n, p)$,the probability mass function is given by $P(X=k) = \binom{n}{k} p^k q^{n-k}$,where $q = 1-p$ and $n = 33$.
Given $3 P(X=0) = P(X=1)$,we substitute the values:
$3 \binom{33}{0} p^0 q^{33} = \binom{33}{1} p^1 q^{32}$
$3 \times 1 \times q^{33} = 33 \times p \times q^{32}$
Since $q \neq 0$,we divide both sides by $q^{32}$:
$3q = 33p$
$q = 11p$
Since $q = 1-p$,we have $1-p = 11p$,which implies $1 = 12p$,so $p = \frac{1}{12}$.
Then $q = 1 - \frac{1}{12} = \frac{11}{12}$.
The variance of a binomial distribution is given by $Var(X) = npq$.
$Var(X) = 33 \times \frac{1}{12} \times \frac{11}{12} = \frac{33 \times 11}{144} = \frac{363}{144}$.
Simplifying by dividing by $3$: $\frac{121}{48}$.
368
MathematicsMediumMCQMHT CET · 2025
If a random variable $X$ has the p.d.f. $f(x) = \begin{cases} \frac{k}{x^2+1} & , \text{if } 0 < x < \infty \\ 0 & , \text{otherwise} \end{cases}$,then the c.d.f. of $X$ is:
A
$2 \tan^{-1} x$
B
$\frac{\pi}{2} \tan^{-1} x$
C
$\frac{2}{\pi} \tan^{-1} x$
D
$\tan^{-1} x$

Solution

(C) Step $1$: Find the value of $k$ using the property $\int_{-\infty}^{\infty} f(x) dx = 1$.
Since $f(x) = 0$ for $x \leq 0$,we have $\int_{0}^{\infty} \frac{k}{x^2+1} dx = 1$.
Step $2$: Evaluate the integral: $k [\tan^{-1} x]_{0}^{\infty} = 1$.
$k (\frac{\pi}{2} - 0) = 1 \implies k = \frac{2}{\pi}$.
Step $3$: The c.d.f. $F(x)$ is defined as $P(X \leq x) = \int_{0}^{x} f(t) dt$ for $x > 0$.
$F(x) = \int_{0}^{x} \frac{2/\pi}{t^2+1} dt = \frac{2}{\pi} [\tan^{-1} t]_{0}^{x} = \frac{2}{\pi} \tan^{-1} x$.
369
MathematicsEasyMCQMHT CET · 2025
The probability distribution of a discrete random variable $X$ is given by the table below:
$X$$0$$1$$2$$3$$4$
$P(X=x)$$2k$$k$$2k$$4k$$k$

If $a = P(X < 3)$ and $b = P(2 < X < 4)$,then:
A
$a = b$
B
$a > b$
C
$a < b$
D
$a = \frac{1}{2} b$

Solution

(B) The sum of all probabilities in a probability distribution is $1$.
Thus,$2k + k + 2k + 4k + k = 1$,which implies $10k = 1$,so $k = 0.1$.
Now,calculate $a = P(X < 3) = P(X=0) + P(X=1) + P(X=2) = 2k + k + 2k = 5k = 5(0.1) = 0.5$.
Next,calculate $b = P(2 < X < 4) = P(X=3) = 4k = 4(0.1) = 0.4$.
Comparing the values,$a = 0.5$ and $b = 0.4$,we see that $a > b$.
370
MathematicsMediumMCQMHT CET · 2025
In a game,$3$ coins are tossed. $A$ person is paid $₹150$ if he gets all heads or all tails,and he is supposed to pay $₹50$ if he gets one head or two heads. The amount he can expect to win or lose on an average per game in $₹$ is:
A
$100$
B
$0$
C
$200$
D
$-100$

Solution

(B) When $3$ coins are tossed,the total number of outcomes is $2^3 = 8$. The sample space is $S = \{HHH, HHT, HTH, THH, HTT, THT, TTH, TTT\}$.
$1$. Case $1$: Getting all heads or all tails.
The outcomes are $HHH$ and $TTT$. There are $2$ such outcomes.
The probability $P(\text{win } ₹150) = \frac{2}{8} = \frac{1}{4}$.
$2$. Case $2$: Getting one head or two heads.
The outcomes are $HHT, HTH, THH, HTT, THT, TTH$. There are $6$ such outcomes.
The probability $P(\text{lose } ₹50) = \frac{6}{8} = \frac{3}{4}$.
$3$. Expected value $E(X)$:
$E(X) = (150 \times \frac{1}{4}) + (-50 \times \frac{3}{4})$
$E(X) = \frac{150}{4} - \frac{150}{4} = 0$.
Therefore,the expected amount he can win or lose on an average per game is $₹0$.
371
MathematicsMediumMCQMHT CET · 2025
Let $X$ be a discrete random variable. The probability distribution of $X$ is given below:
$X$$30$$10$$-10$
$P(X)$$\frac{1}{5}$$A$$B$

If $E(X) = 4$,then the value of $AB$ is equal to:
A
$\frac{3}{10}$
B
$\frac{2}{15}$
C
$\frac{1}{15}$
D
$\frac{3}{20}$

Solution

(D) For a probability distribution,the sum of probabilities must be $1$:
$\frac{1}{5} + A + B = 1 \implies A + B = 1 - \frac{1}{5} = \frac{4}{5}$ (Equation $1$).
The expected value $E(X)$ is given by $\sum X \cdot P(X)$:
$E(X) = 30 \cdot (\frac{1}{5}) + 10 \cdot A + (-10) \cdot B = 4$
$6 + 10A - 10B = 4$
$10A - 10B = -2 \implies 5A - 5B = -1$ (Equation $2$).
From Equation $1$,$B = \frac{4}{5} - A$. Substituting this into Equation $2$:
$5A - 5(\frac{4}{5} - A) = -1$
$5A - 4 + 5A = -1$
$10A = 3 \implies A = \frac{3}{10}$.
Now,find $B$: $B = \frac{4}{5} - \frac{3}{10} = \frac{8-3}{10} = \frac{5}{10} = \frac{1}{2}$.
The value of $AB = (\frac{3}{10}) \cdot (\frac{1}{2}) = \frac{3}{20}$.
372
MathematicsMediumMCQMHT CET · 2025
Two cards are drawn simultaneously from a well-shuffled pack of $52$ cards. If $X$ is the random variable representing the number of queens obtained,then the value of $2 E(X) + 3 E(X^2)$ is:
A
$\frac{132}{221}$
B
$\frac{108}{221}$
C
$\frac{176}{221}$
D
$\frac{68}{221}$

Solution

(C) The total number of ways to draw $2$ cards from $52$ is $^52C_2 = \frac{52 \times 51}{2} = 1326$.
Let $X$ be the number of queens. $X$ can take values $0, 1, 2$.
$P(X=0) = \frac{^{48}C_2}{^{52}C_2} = \frac{48 \times 47}{52 \times 51} = \frac{1128}{1326} = \frac{188}{221}$.
$P(X=1) = \frac{^4C_1 \times ^{48}C_1}{^{52}C_2} = \frac{4 \times 48}{1326} = \frac{192}{1326} = \frac{32}{221}$.
$P(X=2) = \frac{^4C_2}{^{52}C_2} = \frac{6}{1326} = \frac{1}{221}$.
$E(X) = 0 \times P(X=0) + 1 \times P(X=1) + 2 \times P(X=2) = 0 + \frac{32}{221} + \frac{2}{221} = \frac{34}{221}$.
$E(X^2) = 0^2 \times P(X=0) + 1^2 \times P(X=1) + 2^2 \times P(X=2) = 0 + \frac{32}{221} + \frac{4}{221} = \frac{36}{221}$.
Now,$2 E(X) + 3 E(X^2) = 2 \left(\frac{34}{221}\right) + 3 \left(\frac{36}{221}\right) = \frac{68 + 108}{221} = \frac{176}{221}$.
373
MathematicsMediumMCQMHT CET · 2025
$A$ random variable $X$ takes the values $0, 1, 2, 3, \dots$ with probability $P(X=x) = k(x+1)\left(\frac{1}{5}\right)^x$,where $k$ is a constant. Then $P(X=0)$ is
A
$\frac{16}{25}$
B
$\frac{7}{25}$
C
$\frac{19}{25}$
D
$\frac{18}{25}$

Solution

(A) The sum of all probabilities in a probability distribution must be equal to $1$.
Therefore,$\sum_{x=0}^{\infty} P(X=x) = 1$.
Substituting the given expression: $\sum_{x=0}^{\infty} k(x+1)\left(\frac{1}{5}\right)^x = 1$.
This is an arithmetico-geometric series of the form $\sum_{x=0}^{\infty} (x+1)r^x$ where $r = \frac{1}{5}$.
The sum of the series $\sum_{x=0}^{\infty} (x+1)r^x = 1 + 2r + 3r^2 + \dots = \frac{1}{(1-r)^2}$.
Substituting $r = \frac{1}{5}$: $\frac{1}{(1 - 1/5)^2} = \frac{1}{(4/5)^2} = \frac{1}{16/25} = \frac{25}{16}$.
Thus,$k \times \frac{25}{16} = 1$,which gives $k = \frac{16}{25}$.
We need to find $P(X=0)$.
$P(X=0) = k(0+1)\left(\frac{1}{5}\right)^0 = k \times 1 \times 1 = k$.
Therefore,$P(X=0) = \frac{16}{25}$.
374
MathematicsMediumMCQMHT CET · 2025
Two numbers are selected at random,without replacement from the first $6$ positive integers. Let $X$ denote the larger of the two numbers. Then $E(X) = $
A
$\frac{14}{3}$
B
$\frac{3}{14}$
C
$\frac{14}{5}$
D
$\frac{15}{41}$

Solution

(A) The total number of ways to select $2$ numbers from $6$ is $\binom{6}{2} = \frac{6 \times 5}{2} = 15$.
Let $X$ be the larger of the two numbers. The possible values for $X$ are $2, 3, 4, 5, 6$.
If $X = 2$,the pair is $(1, 2)$,so $P(X=2) = \frac{1}{15}$.
If $X = 3$,the pairs are $(1, 3), (2, 3)$,so $P(X=3) = \frac{2}{15}$.
If $X = 4$,the pairs are $(1, 4), (2, 4), (3, 4)$,so $P(X=4) = \frac{3}{15}$.
If $X = 5$,the pairs are $(1, 5), (2, 5), (3, 5), (4, 5)$,so $P(X=5) = \frac{4}{15}$.
If $X = 6$,the pairs are $(1, 6), (2, 6), (3, 6), (4, 6), (5, 6)$,so $P(X=6) = \frac{5}{15}$.
The expected value $E(X) = \sum x P(X=x) = 2(\frac{1}{15}) + 3(\frac{2}{15}) + 4(\frac{3}{15}) + 5(\frac{4}{15}) + 6(\frac{5}{15})$.
$E(X) = \frac{2 + 6 + 12 + 20 + 30}{15} = \frac{70}{15} = \frac{14}{3}$.
375
MathematicsMediumMCQMHT CET · 2025
$A$ random variable $X$ takes values $0, 1, 2, 3, \dots$ with probabilities $P(X=x) = k(x+1)\left(\frac{1}{2}\right)^x$. If $k$ is a constant,then $P(X=1) = $
A
$\frac{1}{2}$
B
$\frac{1}{3}$
C
$\frac{1}{4}$
D
$\frac{1}{8}$

Solution

(C) The sum of all probabilities in a probability distribution must be equal to $1$.
Thus,$\sum_{x=0}^{\infty} P(X=x) = 1$.
Substituting the given expression: $\sum_{x=0}^{\infty} k(x+1)\left(\frac{1}{2}\right)^x = 1$.
$k \sum_{x=0}^{\infty} (x+1)r^x = 1$,where $r = \frac{1}{2}$.
We know that $\sum_{x=0}^{\infty} (x+1)r^x = 1 + 2r + 3r^2 + \dots = (1-r)^{-2}$.
For $r = \frac{1}{2}$,the sum is $(1 - \frac{1}{2})^{-2} = (\frac{1}{2})^{-2} = 4$.
Therefore,$k(4) = 1$,which gives $k = \frac{1}{4}$.
Now,we need to find $P(X=1)$.
$P(X=1) = k(1+1)\left(\frac{1}{2}\right)^1 = k(2)(\frac{1}{2}) = k$.
Since $k = \frac{1}{4}$,$P(X=1) = \frac{1}{4}$.
376
MathematicsMediumMCQMHT CET · 2025
The following is the probability distribution of $X$:
$X$ $0$ $1$ $2$ $3$
$P(X=x)$ $\frac{1+p}{5}$ $\frac{2-2p}{5}$ $\frac{2-p}{5}$ $\frac{2p}{5}$

For a minimum value of $p$,the value of $5 E(X)$ is:
A
$5$
B
$6$
C
$7$
D
$8$

Solution

(B) For a probability distribution,the sum of probabilities must be $1$:
$\frac{1+p}{5} + \frac{2-2p}{5} + \frac{2-p}{5} + \frac{2p}{5} = 1$
$\frac{1+p+2-2p+2-p+2p}{5} = 1$
$\frac{5}{5} = 1$. This is always true for any $p$.
Since $P(X=x) \ge 0$ for all $x$,we have:
$1+p \ge 0 \implies p \ge -1$
$2-2p \ge 0 \implies p \le 1$
$2-p \ge 0 \implies p \le 2$
$2p \ge 0 \implies p \ge 0$
Combining these,$0 \le p \le 1$. The minimum value of $p$ is $0$.
Now,calculate $E(X) = \sum x P(X=x)$:
$E(X) = 0 \cdot \frac{1+p}{5} + 1 \cdot \frac{2-2p}{5} + 2 \cdot \frac{2-p}{5} + 3 \cdot \frac{2p}{5}$
$E(X) = \frac{2-2p + 4-2p + 6p}{5} = \frac{6+2p}{5}$
For $p=0$,$E(X) = \frac{6}{5}$.
Therefore,$5 E(X) = 5 \cdot \frac{6}{5} = 6$.
377
MathematicsEasyMCQMHT CET · 2025
The cumulative distribution function (c.d.f.) $F(x)$ of a discrete random variable $X$ is given by the following table:
$X$$-3$$-1$$0$$1$$3$$5$$7$$9$
$F(X=x)$$0.1$$0.3$$0.5$$0.65$$0.75$$0.85$$0.90$$1$

Then,find the value of $\frac{P[X=-3]}{P[X < 0]}$.
A
$\frac{1}{4}$
B
$\frac{1}{3}$
C
$\frac{1}{6}$
D
$\frac{1}{7}$

Solution

(B) The cumulative distribution function $F(x) = P(X \le x)$.
To find $P[X=-3]$,we use the definition of the c.d.f.:
$P[X=-3] = F(-3) = 0.1$.
To find $P[X < 0]$,we note that $X < 0$ includes the values $X = -3$ and $X = -1$.
Thus,$P[X < 0] = P(X = -3) + P(X = -1) = F(-1) = 0.3$.
Now,we calculate the required ratio:
$\frac{P[X=-3]}{P[X < 0]} = \frac{0.1}{0.3} = \frac{1}{3}$.
Therefore,the correct option is $B$.
378
MathematicsMediumMCQMHT CET · 2025
$A$ random variable $X$ has a probability mass function $P(X=x) = \frac{{}^4C_x}{2^4}$ for $x = 0, 1, 2, 3, 4$. If $\mu$ and $\sigma^2$ are the mean and variance of the random variable $X$ respectively,then:
A
$\mu = 2, \sigma^2 = 4$
B
$\mu = 2, \sigma^2 = 1$
C
$\mu = 3, \sigma^2 = 4$
D
$\mu = 2, \sigma^2 = 5$

Solution

(B) The given probability mass function is $P(X=x) = \frac{{}^4C_x}{2^4} = {}^4C_x \left(\frac{1}{2}\right)^x \left(\frac{1}{2}\right)^{4-x}$.
This is a binomial distribution $B(n, p)$ with $n = 4$ and $p = \frac{1}{2}$.
The mean $\mu$ of a binomial distribution is given by $\mu = np = 4 \times \frac{1}{2} = 2$.
The variance $\sigma^2$ of a binomial distribution is given by $\sigma^2 = npq$,where $q = 1 - p = 1 - \frac{1}{2} = \frac{1}{2}$.
Thus,$\sigma^2 = 4 \times \frac{1}{2} \times \frac{1}{2} = 1$.
Therefore,$\mu = 2$ and $\sigma^2 = 1$.
379
MathematicsMediumMCQMHT CET · 2025
If a random variable $X$ has p.d.f. $f(x) = \begin{cases} \frac{ax^2}{2} + bx & , \text{if } 1 \leqslant x \leqslant 3 \\ 0 & , \text{otherwise} \end{cases}$ and $f(2) = 2$,then the values of $a$ and $b$ are,respectively
A
$11, -10$
B
$-9, 10$
C
$\frac{1}{6}, \frac{5}{6}$
D
$9, -8$

Solution

(B) For a probability density function (p.d.f.),the total area under the curve must be $1$.
Thus,$\int_{1}^{3} f(x) dx = 1$.
Substituting $f(x) = \frac{ax^2}{2} + bx$:
$\int_{1}^{3} (\frac{ax^2}{2} + bx) dx = [\frac{ax^3}{6} + \frac{bx^2}{2}]_{1}^{3} = 1$.
Evaluating at the limits: $(\frac{27a}{6} + \frac{9b}{2}) - (\frac{a}{6} + \frac{b}{2}) = 1$.
$\frac{26a}{6} + \frac{8b}{2} = 1 \implies \frac{13a}{3} + 4b = 1 \implies 13a + 12b = 3$ (Equation $1$).
Given $f(2) = 2$:
$\frac{a(2)^2}{2} + b(2) = 2 \implies 2a + 2b = 2 \implies a + b = 1 \implies b = 1 - a$ (Equation $2$).
Substitute Equation $2$ into Equation $1$:
$13a + 12(1 - a) = 3$.
$13a + 12 - 12a = 3$.
$a = 3 - 12 = -9$.
Using $b = 1 - a$:
$b = 1 - (-9) = 10$.
Thus,$a = -9$ and $b = 10$.
380
MathematicsMediumMCQMHT CET · 2025
In a game,a man wins $₹ 40$ if he gets $5$ or $6$ on a throw of a fair die and loses $₹ 20$ for getting any other number on the die. If he decides to throw the die either until he gets a $5$ or $6$ or to a maximum of $3$ throws,then his expected gain/loss (in rupees) is:
A
$-10$
B
$10$
C
$0$
D
$1$

Solution

(C) Let $S$ be the event of getting $5$ or $6$ (success) and $F$ be the event of getting $1, 2, 3,$ or $4$ (failure).
Probability of success $P(S) = \frac{2}{6} = \frac{1}{3}$.
Probability of failure $P(F) = 1 - \frac{1}{3} = \frac{2}{3}$.
The game stops if he gets $S$ or after $3$ throws.
Possible outcomes:
$1$. Success on 1st throw: $S$. Probability $P_1 = \frac{1}{3}$. Gain = $₹ 40$.
$2$. Success on 2nd throw: $FS$. Probability $P_2 = \frac{2}{3} \times \frac{1}{3} = \frac{2}{9}$. Gain = $40 - 20 = ₹ 20$.
$3$. Success on 3rd throw: $FFS$. Probability $P_3 = \frac{2}{3} \times \frac{2}{3} \times \frac{1}{3} = \frac{4}{27}$. Gain = $40 - 20 - 20 = ₹ 0$.
$4$. Failure on all $3$ throws: $FFF$. Probability $P_4 = \frac{2}{3} \times \frac{2}{3} \times \frac{2}{3} = \frac{8}{27}$. Gain = $-20 - 20 - 20 = -₹ 60$.
Expected gain $E = (40 \times \frac{1}{3}) + (20 \times \frac{2}{9}) + (0 \times \frac{4}{27}) + (-60 \times \frac{8}{27})$.
$E = \frac{40}{3} + \frac{40}{9} + 0 - \frac{480}{27} = \frac{360 + 120 - 480}{27} = \frac{0}{27} = 0$.
381
MathematicsMediumMCQMHT CET · 2025
Let the mean and standard deviation of the probability distribution given by the table below be $\mu$ and $\sigma$ respectively. If $\sigma - \mu = 2$,then find the value of $\sigma$.
$X=x$$-3$$0$$1$$\alpha$
$P(X=x)$$\frac{1}{4}$$K$$\frac{1}{4}$$\frac{1}{3}$
A
$\frac{3}{2}$
B
$\frac{5}{2}$
C
$\frac{7}{2}$
D
$\frac{9}{2}$

Solution

(B) $1$. The sum of probabilities in a distribution is $1$. So,$\frac{1}{4} + K + \frac{1}{4} + \frac{1}{3} = 1$.
$\frac{1}{2} + \frac{1}{3} + K = 1 \implies \frac{5}{6} + K = 1 \implies K = \frac{1}{6}$.
$2$. The mean $\mu = \sum x_i P(x_i) = (-3)(\frac{1}{4}) + (0)(\frac{1}{6}) + (1)(\frac{1}{4}) + (\alpha)(\frac{1}{3}) = -\frac{3}{4} + 0 + \frac{1}{4} + \frac{\alpha}{3} = -\frac{1}{2} + \frac{\alpha}{3}$.
$3$. The variance $\sigma^2 = \sum x_i^2 P(x_i) - \mu^2$.
$\sum x_i^2 P(x_i) = (-3)^2(\frac{1}{4}) + (0)^2(\frac{1}{6}) + (1)^2(\frac{1}{4}) + (\alpha)^2(\frac{1}{3}) = \frac{9}{4} + 0 + \frac{1}{4} + \frac{\alpha^2}{3} = \frac{10}{4} + \frac{\alpha^2}{3} = \frac{5}{2} + \frac{\alpha^2}{3}$.
$4$. Given $\sigma - \mu = 2$,so $\sigma = \mu + 2$. Substituting into $\sigma^2 = \sum x_i^2 P(x_i) - \mu^2$:
$(\mu + 2)^2 = \sum x_i^2 P(x_i) - \mu^2 \implies \mu^2 + 4\mu + 4 = \frac{5}{2} + \frac{\alpha^2}{3} - \mu^2$.
$5$. Substituting $\mu = -\frac{1}{2} + \frac{\alpha}{3}$ into the equation and solving for $\alpha$ yields $\alpha = 3$.
$6$. Then $\mu = -\frac{1}{2} + \frac{3}{3} = \frac{1}{2}$.
$7$. Finally,$\sigma = \mu + 2 = \frac{1}{2} + 2 = \frac{5}{2}$.
382
MathematicsMediumMCQMHT CET · 2025
The probability distribution of a random variable $X$ is given by
$X=x_i$ $0$ $1$ $2$ $3$ $4$
$P(X=x_i)$ $0.4$ $0.3$ $0.1$ $0.1$ $0.1$

Then the variance of $X$ is
A
$1.76$
B
$2.45$
C
$3.2$
D
$4.0$

Solution

(A) The mean of the random variable $X$ is given by $E(X) = \sum x_i P(x_i)$.
$E(X) = (0 \times 0.4) + (1 \times 0.3) + (2 \times 0.1) + (3 \times 0.1) + (4 \times 0.1)$
$E(X) = 0 + 0.3 + 0.2 + 0.3 + 0.4 = 1.2$.
The expected value of $X^2$ is $E(X^2) = \sum x_i^2 P(x_i)$.
$E(X^2) = (0^2 \times 0.4) + (1^2 \times 0.3) + (2^2 \times 0.1) + (3^2 \times 0.1) + (4^2 \times 0.1)$
$E(X^2) = 0 + 0.3 + 0.4 + 0.9 + 1.6 = 3.2$.
The variance of $X$ is given by $Var(X) = E(X^2) - [E(X)]^2$.
$Var(X) = 3.2 - (1.2)^2$
$Var(X) = 3.2 - 1.44 = 1.76$.
383
MathematicsMediumMCQMHT CET · 2025
$A$ random variable $X$ has the following probability density function (p.d.f.):
$f(x) = kx(1-x), 0 \leqslant x \leqslant 1$
If $P(X > a) = \frac{20}{27}$,then find the value of $a$.
A
$\frac{1}{3}$
B
$\frac{2}{3}$
C
$\frac{1}{2}$
D
$\frac{1}{4}$

Solution

(A) Step $1$: Find the value of $k$ using the property $\int_{0}^{1} f(x) dx = 1$.
$\int_{0}^{1} k(x - x^2) dx = k [\frac{x^2}{2} - \frac{x^3}{3}]_{0}^{1} = k(\frac{1}{2} - \frac{1}{3}) = k(\frac{1}{6}) = 1 \implies k = 6$.
Step $2$: Use the condition $P(X > a) = \frac{20}{27}$.
$P(X > a) = \int_{a}^{1} 6(x - x^2) dx = \frac{20}{27}$.
$6 [\frac{x^2}{2} - \frac{x^3}{3}]_{a}^{1} = \frac{20}{27}$.
$6 [(\frac{1}{2} - \frac{1}{3}) - (\frac{a^2}{2} - \frac{a^3}{3})] = \frac{20}{27}$.
$6 [\frac{1}{6} - \frac{a^2}{2} + \frac{a^3}{3}] = \frac{20}{27}$.
$1 - 3a^2 + 2a^3 = \frac{20}{27}$.
$2a^3 - 3a^2 + 1 - \frac{20}{27} = 0 \implies 2a^3 - 3a^2 + \frac{7}{27} = 0$.
$54a^3 - 81a^2 + 7 = 0$.
Testing $a = \frac{1}{3}$: $54(\frac{1}{27}) - 81(\frac{1}{9}) + 7 = 2 - 9 + 7 = 0$.
Thus,$a = \frac{1}{3}$ is the correct solution.
384
MathematicsMediumMCQMHT CET · 2025
If a random variable $X$ has the following probability distribution of $X$:
$X=x$ $0$ $1$ $2$ $3$ $4$ $5$ $6$ $7$
$P(X=x)$ $0$ $k$ $2k$ $2k$ $3k$ $k^2$ $2k^2$ $7k^2+k$

Then $P(X \geqslant 6) = $
A
$\frac{19}{100}$
B
$\frac{81}{100}$
C
$\frac{9}{100}$
D
$\frac{91}{100}$

Solution

(A) The sum of all probabilities in a probability distribution must be equal to $1$.
$\sum P(X=x) = 0 + k + 2k + 2k + 3k + k^2 + 2k^2 + (7k^2 + k) = 1$
$10k^2 + 9k = 1$
$10k^2 + 9k - 1 = 0$
$(10k - 1)(k + 1) = 0$
Since $k > 0$,we have $k = \frac{1}{10}$.
We need to find $P(X \geqslant 6) = P(X=6) + P(X=7)$.
$P(X=6) = 2k^2 = 2(\frac{1}{10})^2 = \frac{2}{100}$.
$P(X=7) = 7k^2 + k = 7(\frac{1}{10})^2 + \frac{1}{10} = \frac{7}{100} + \frac{10}{100} = \frac{17}{100}$.
Therefore,$P(X \geqslant 6) = \frac{2}{100} + \frac{17}{100} = \frac{19}{100}$.
385
MathematicsMediumMCQMHT CET · 2025
Let $X$ denote the number of hours you study on a Sunday. It is known that $P(X=x) = \begin{cases} 0.1 & \text{if } x=0 \\ kx & \text{if } x=1, 2 \\ k(5-x) & \text{if } x=3, 4 \\ 0 & \text{otherwise} \end{cases}$ where $k$ is a constant. Then the probability that you study at least two hours on a Sunday is
A
$0.55$
B
$0.15$
C
$0.75$
D
$0.3$

Solution

(C) The sum of all probabilities in a probability distribution must be $1$. Thus,$\sum P(X=x) = 1$.
Substituting the given values: $P(X=0) + P(X=1) + P(X=2) + P(X=3) + P(X=4) = 1$.
$0.1 + k(1) + k(2) + k(5-3) + k(5-4) = 1$.
$0.1 + k + 2k + 2k + k = 1$.
$0.1 + 6k = 1$.
$6k = 0.9$,so $k = 0.15$.
We need to find the probability that you study at least two hours,which is $P(X \ge 2) = P(X=2) + P(X=3) + P(X=4)$.
$P(X=2) = k(2) = 2(0.15) = 0.3$.
$P(X=3) = k(5-3) = 2(0.15) = 0.3$.
$P(X=4) = k(5-4) = 1(0.15) = 0.15$.
$P(X \ge 2) = 0.3 + 0.3 + 0.15 = 0.75$.
386
MathematicsEasyMCQMHT CET · 2025
Consider the probability distribution
$\begin{array}{|r|c|c|c|c|c|} \hline X=x & 1 & 2 & 3 & 4 & 5 \\ \hline P(X=x) & K & 2K & K^2 & 2K & 5K^2 \\ \hline \end{array}$
Then the value of $P(X > 2)$ is
A
$\frac{7}{12}$
B
$\frac{1}{36}$
C
$\frac{1}{2}$
D
$\frac{23}{36}$

Solution

(C) The sum of all probabilities in a probability distribution must be equal to $1$.
Therefore,$\sum P(X=x) = K + 2K + K^2 + 2K + 5K^2 = 1$.
Combining like terms,we get $6K^2 + 5K - 1 = 0$.
Factoring the quadratic equation: $(6K - 1)(K + 1) = 0$.
This gives $K = \frac{1}{6}$ or $K = -1$.
Since probability cannot be negative,we must have $K = \frac{1}{6}$.
We need to find $P(X > 2) = P(X=3) + P(X=4) + P(X=5)$.
$P(X > 2) = K^2 + 2K + 5K^2 = 6K^2 + 2K$.
Substituting $K = \frac{1}{6}$: $P(X > 2) = 6(\frac{1}{6})^2 + 2(\frac{1}{6}) = 6(\frac{1}{36}) + \frac{2}{6} = \frac{1}{6} + \frac{1}{3} = \frac{1+2}{6} = \frac{3}{6} = \frac{1}{2}$.
387
MathematicsMediumMCQMHT CET · 2025
$A$ player tosses two coins. He wins $Rs. 10$ if $2$ heads appear,$Rs. 5$ if one head appears,and $Rs. 2$ if no head appears. Find the variance of the winning amount.
A
$38.5$
B
$5.5$
C
$8.25$
D
$44$

Solution

(C) Let $X$ be the random variable representing the winning amount. The possible outcomes of tossing two coins are ${HH, HT, TH, TT}$.
$1$. If $2$ heads appear $(HH)$,$X = 10$. Probability $P(X=10) = \frac{1}{4}$.
$2$. If $1$ head appears $(HT, TH)$,$X = 5$. Probability $P(X=5) = \frac{2}{4} = \frac{1}{2}$.
$3$. If $0$ heads appear $(TT)$,$X = 2$. Probability $P(X=2) = \frac{1}{4}$.
Mean $E(X) = \sum x_i p_i = (10 \times \frac{1}{4}) + (5 \times \frac{1}{2}) + (2 \times \frac{1}{4}) = 2.5 + 2.5 + 0.5 = 5.5$.
$E(X^2) = \sum x_i^2 p_i = (10^2 \times \frac{1}{4}) + (5^2 \times \frac{1}{2}) + (2^2 \times \frac{1}{4}) = (100 \times 0.25) + (25 \times 0.5) + (4 \times 0.25) = 25 + 12.5 + 1 = 38.5$.
Variance $Var(X) = E(X^2) - [E(X)]^2 = 38.5 - (5.5)^2 = 38.5 - 30.25 = 8.25$.
388
MathematicsEasyMCQMHT CET · 2025
The following is the p.d.f. of a continuous random variable $X$: $f(x) = \begin{cases} \frac{x}{8} & , \text{if } 0 < x < 4 \\ 0 & , \text{otherwise} \end{cases}$
Then $F(0.5)$,$F(1.7)$,and $F(5)$ are respectively:
A
$\frac{1}{64}, 1, 0.18$
B
$0.0156, 0.18, 1$
C
$0.18, 0.0156, 1$
D
$1, 0.0156, 0.18$

Solution

(B) The cumulative distribution function $F(x)$ is defined as $F(x) = \int_{-\infty}^{x} f(t) \, dt$.
For $0 < x < 4$,$F(x) = \int_{0}^{x} \frac{t}{8} \, dt = \left[ \frac{t^2}{16} \right]_{0}^{x} = \frac{x^2}{16}$.
For $x \le 0$,$F(x) = 0$.
For $x \ge 4$,$F(x) = 1$.
Calculating the values:
$F(0.5) = \frac{(0.5)^2}{16} = \frac{0.25}{16} = 0.015625 \approx 0.0156$.
$F(1.7) = \frac{(1.7)^2}{16} = \frac{2.89}{16} = 0.180625 \approx 0.18$.
$F(5) = 1$ (since $5 \ge 4$).
Thus,the values are $0.0156, 0.18, 1$.
389
MathematicsMediumMCQMHT CET · 2025
$A$ random variable $X$ has the following probability distribution:
$X=x$$1$$2$$3$$4$
$P(X=x)$$0.1$$0.2$$0.3$$0.4$

The mean and standard deviation of $X$ are respectively:
A
$2$ and $3$
B
$3$ and $1$
C
$3$ and $\sqrt{2}$
D
$2$ and $1$

Solution

(B) The mean $E(X)$ is calculated as $\sum x_i P(x_i) = (1 \times 0.1) + (2 \times 0.2) + (3 \times 0.3) + (4 \times 0.4) = 0.1 + 0.4 + 0.9 + 1.6 = 3.0$.
The variance $Var(X)$ is calculated as $E(X^2) - [E(X)]^2$.
$E(X^2) = \sum x_i^2 P(x_i) = (1^2 \times 0.1) + (2^2 \times 0.2) + (3^2 \times 0.3) + (4^2 \times 0.4) = 0.1 + 0.8 + 2.7 + 6.4 = 10.0$.
$Var(X) = 10.0 - (3.0)^2 = 10.0 - 9.0 = 1.0$.
The standard deviation $\sigma = \sqrt{Var(X)} = \sqrt{1.0} = 1.0$.
Thus,the mean is $3$ and the standard deviation is $1$.
390
MathematicsEasyMCQMHT CET · 2025
In a meeting,$70 \%$ of the members favour and $30 \%$ oppose a certain proposal. $A$ member is selected at random. We take $X=0$ if he opposes the proposal and $X=1$ if the member is in favour. Then the variance of $X$ is:
A
$0.21$
B
$0.23$
C
$0.25$
D
$0.27$

Solution

(A) Given that $70 \%$ of members favour the proposal,the probability $P(X=1) = 0.70$.
Since $30 \%$ oppose the proposal,the probability $P(X=0) = 0.30$.
The mean $E(X) = \sum x_i P(x_i) = (0 \times 0.30) + (1 \times 0.70) = 0.70$.
The expected value of $X^2$ is $E(X^2) = \sum x_i^2 P(x_i) = (0^2 \times 0.30) + (1^2 \times 0.70) = 0.70$.
The variance $Var(X) = E(X^2) - [E(X)]^2 = 0.70 - (0.70)^2 = 0.70 - 0.49 = 0.21$.
391
MathematicsMediumMCQMHT CET · 2025
For the following probability distribution,the standard deviation of the random variable $X$ is:
$X$ $2$ $3$ $4$
$P(X=x)$ $0.2$ $0.5$ $0.3$
A
$0.66$
B
$0.7$
C
$0.5$
D
$0.49$

Solution

(B) The mean of the random variable $X$ is given by $E(X) = \sum x_i P(x_i)$.
$E(X) = (2 \times 0.2) + (3 \times 0.5) + (4 \times 0.3) = 0.4 + 1.5 + 1.2 = 3.1$.
The expected value of $X^2$ is $E(X^2) = \sum x_i^2 P(x_i)$.
$E(X^2) = (2^2 \times 0.2) + (3^2 \times 0.5) + (4^2 \times 0.3) = (4 \times 0.2) + (9 \times 0.5) + (16 \times 0.3) = 0.8 + 4.5 + 4.8 = 10.1$.
The variance is $Var(X) = E(X^2) - [E(X)]^2$.
$Var(X) = 10.1 - (3.1)^2 = 10.1 - 9.61 = 0.49$.
The standard deviation is $\sigma = \sqrt{Var(X)} = \sqrt{0.49} = 0.7$.
392
MathematicsMediumMCQMHT CET · 2025
$A$ student studies for $X$ number of hours during a randomly selected school day. The probability distribution of $X$ is given by the following form,where $k$ is a constant:
$P(X=x) = \begin{cases} 0.2, & \text{if } x=0 \\ kx, & \text{if } x=1 \text{ or } 2 \\ k(6-x), & \text{if } x=3 \text{ or } 4 \\ 0, & \text{otherwise} \end{cases}$
The probability that the student studies for at most two hours is:
A
$0.1$
B
$0.5$
C
$0.3$
D
$0.7$

Solution

(B) The sum of all probabilities in a probability distribution must be equal to $1$.
$\sum P(X=x) = 1$
$P(X=0) + P(X=1) + P(X=2) + P(X=3) + P(X=4) = 1$
$0.2 + k(1) + k(2) + k(6-3) + k(6-4) = 1$
$0.2 + k + 2k + 3k + 2k = 1$
$0.2 + 8k = 1$
$8k = 0.8$
$k = 0.1$
We need to find the probability that the student studies for at most two hours,which is $P(X \le 2) = P(X=0) + P(X=1) + P(X=2)$.
$P(X \le 2) = 0.2 + k(1) + k(2) = 0.2 + 3k$
Substituting $k = 0.1$:
$P(X \le 2) = 0.2 + 3(0.1) = 0.2 + 0.3 = 0.5$.
393
MathematicsMediumMCQMHT CET · 2025
If $X \sim B(35, p)$ such that $7 P(X=0)=P(X=1)$,then the value of $\frac{P(X=15)}{P(X=20)}$ is equal to
A
$\frac{3125}{7776}$
B
$3125$
C
$7776$
D
$\frac{625}{1296}$

Solution

(B) Given $X \sim B(n, p)$ with $n=35$. The probability mass function is $P(X=k) = \binom{n}{k} p^k q^{n-k}$,where $q = 1-p$.
Given $7 P(X=0) = P(X=1)$.
Substituting the values: $7 \binom{35}{0} p^0 q^{35} = \binom{35}{1} p^1 q^{34}$.
$7 q = 35 p \implies q = 5p$.
Since $p+q=1$,we have $p+5p=1 \implies 6p=1 \implies p = \frac{1}{6}$ and $q = \frac{5}{6}$.
Now,we need to find $\frac{P(X=15)}{P(X=20)} = \frac{\binom{35}{15} p^{15} q^{20}}{\binom{35}{20} p^{20} q^{15}} = \frac{\binom{35}{15}}{\binom{35}{20}} \cdot \frac{q^5}{p^5} = \frac{\binom{35}{15}}{\binom{35}{15}} \cdot (\frac{q}{p})^5$.
Since $\binom{35}{15} = \binom{35}{20}$,the ratio is $(q/p)^5 = (5)^5 = 3125$.
394
MathematicsMediumMCQMHT CET · 2025
Two cards are drawn successively with replacement from a fair deck of $52$ cards. Let $X$ denote the number of kings obtained when two cards are drawn. Then $E(X^2) = $
A
$\frac{24}{169}$
B
$\frac{26}{169}$
C
$\frac{27}{169}$
D
$\frac{28}{169}$

Solution

(D) The total number of cards is $52$. The number of kings in the deck is $4$.
Since the cards are drawn with replacement,the probability of drawing a king in a single trial is $p = \frac{4}{52} = \frac{1}{13}$.
The probability of not drawing a king is $q = 1 - p = 1 - \frac{1}{13} = \frac{12}{13}$.
Let $X$ be the random variable representing the number of kings in $n = 2$ trials. $X$ follows a binomial distribution $B(n, p) = B(2, \frac{1}{13})$.
The probability distribution of $X$ is:
$P(X=0) = \binom{2}{0} p^0 q^2 = 1 \times 1 \times (\frac{12}{13})^2 = \frac{144}{169}$
$P(X=1) = \binom{2}{1} p^1 q^1 = 2 \times \frac{1}{13} \times \frac{12}{13} = \frac{24}{169}$
$P(X=2) = \binom{2}{2} p^2 q^0 = 1 \times (\frac{1}{13})^2 \times 1 = \frac{1}{169}$
We need to find $E(X^2) = \sum x^2 P(X=x)$.
$E(X^2) = (0^2 \times \frac{144}{169}) + (1^2 \times \frac{24}{169}) + (2^2 \times \frac{1}{169})$
$E(X^2) = 0 + \frac{24}{169} + \frac{4}{169} = \frac{28}{169}$.
395
MathematicsEasyMCQMHT CET · 2025
The p.d.f. of a continuous random variable $X$ is $f(x)=\begin{cases} \frac{x^2}{18} & \text{if } -3 < x < 3 \\ 0 & \text{otherwise} \end{cases}$. Then $P[|X| < 2]=$
A
$\frac{1}{27}$
B
$\frac{2}{13}$
C
$\frac{8}{27}$
D
$\frac{4}{27}$

Solution

(C) We are given the probability density function $f(x) = \frac{x^2}{18}$ for $-3 < x < 3$.
We need to find $P[|X| < 2]$.
The condition $|X| < 2$ is equivalent to $-2 < x < 2$.
Thus,$P[|X| < 2] = \int_{-2}^{2} f(x) \, dx$.
$P[|X| < 2] = \int_{-2}^{2} \frac{x^2}{18} \, dx$.
Since the function is even,$P[|X| < 2] = 2 \int_{0}^{2} \frac{x^2}{18} \, dx$.
$P[|X| < 2] = 2 \times \frac{1}{18} \left[ \frac{x^3}{3} \right]_{0}^{2}$.
$P[|X| < 2] = \frac{1}{9} \left( \frac{2^3}{3} - 0 \right)$.
$P[|X| < 2] = \frac{1}{9} \times \frac{8}{3} = \frac{8}{27}$.
396
MathematicsEasyMCQMHT CET · 2025
The acute angle between the lines $x = -2 + 2t, y = 3 - 4t, z = -4 + t$ and $x = -2 - t, y = 3 + 2t, z = -4 + 3t$ is
A
$\cos^{-1}\left(\frac{7}{3\sqrt{6}}\right)$
B
$\cos^{-1}\left(\frac{1}{\sqrt{5}}\right)$
C
$\sin^{-1}\left(\frac{2}{\sqrt{5}}\right)$
D
$\cos^{-1}\left(\frac{2}{\sqrt{6}}\right)$

Solution

(A) The direction ratios of the first line are $a_1 = 2, b_1 = -4, c_1 = 1$.
The direction ratios of the second line are $a_2 = -1, b_2 = 2, c_2 = 3$.
The cosine of the angle $\theta$ between the two lines is given by:
$\cos \theta = \left| \frac{a_1 a_2 + b_1 b_2 + c_1 c_2}{\sqrt{a_1^2 + b_1^2 + c_1^2} \sqrt{a_2^2 + b_2^2 + c_2^2}} \right|$
Substituting the values:
$\cos \theta = \left| \frac{(2)(-1) + (-4)(2) + (1)(3)}{\sqrt{2^2 + (-4)^2 + 1^2} \sqrt{(-1)^2 + 2^2 + 3^2}} \right|$
$\cos \theta = \left| \frac{-2 - 8 + 3}{\sqrt{4 + 16 + 1} \sqrt{1 + 4 + 9}} \right| = \left| \frac{-7}{\sqrt{21} \sqrt{14}} \right|$
$\cos \theta = \frac{7}{\sqrt{21 \times 14}} = \frac{7}{\sqrt{3 \times 7 \times 2 \times 7}} = \frac{7}{7\sqrt{6}} = \frac{1}{\sqrt{6}}$
Therefore,$\theta = \cos^{-1}\left(\frac{1}{\sqrt{6}}\right)$.
397
MathematicsMediumMCQMHT CET · 2025
If the plane $\frac{x}{3}+\frac{y}{2}-\frac{z}{4}=1$ cuts the coordinate axes at points $A, B$,and $C$,then the area of the triangle $ABC$ is
A
$\frac{\sqrt{61}}{2}$ sq. units
B
$2 \sqrt{61}$ sq. units
C
$\sqrt{61}$ sq. units
D
$3 \sqrt{61}$ sq. units

Solution

(C) The equation of the plane is $\frac{x}{3}+\frac{y}{2}-\frac{z}{4}=1$.
To find the points where the plane cuts the coordinate axes,we set the other two variables to zero.
For the $x$-axis,set $y=0$ and $z=0$: $\frac{x}{3}=1 \implies x=3$. So,$A = (3, 0, 0)$.
For the $y$-axis,set $x=0$ and $z=0$: $\frac{y}{2}=1 \implies y=2$. So,$B = (0, 2, 0)$.
For the $z$-axis,set $x=0$ and $y=0$: $-\frac{z}{4}=1 \implies z=-4$. So,$C = (0, 0, -4)$.
The area of a triangle with vertices $(x_1, y_1, z_1), (x_2, y_2, z_2)$,and $(x_3, y_3, z_3)$ is given by $\frac{1}{2} |\vec{AB} \times \vec{AC}|$.
$\vec{AB} = B - A = (-3, 2, 0)$ and $\vec{AC} = C - A = (-3, 0, -4)$.
$\vec{AB} \times \vec{AC} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ -3 & 2 & 0 \\ -3 & 0 & -4 \end{vmatrix} = \hat{i}(-8 - 0) - \hat{j}(12 - 0) + \hat{k}(0 - (-6)) = -8\hat{i} - 12\hat{j} + 6\hat{k}$.
The magnitude is $\sqrt{(-8)^2 + (-12)^2 + 6^2} = \sqrt{64 + 144 + 36} = \sqrt{244} = \sqrt{4 \times 61} = 2\sqrt{61}$.
Area $= \frac{1}{2} \times 2\sqrt{61} = \sqrt{61}$ sq. units.
398
MathematicsMediumMCQMHT CET · 2025
If a directed line makes angles $45^{\circ}$ and $60^{\circ}$ with the $X$ and $Y$-axes respectively,then the obtuse angle $\theta$ made by the line with the $Z$-axis is (in $^{\circ}$)
A
$135$
B
$120$
C
$160$
D
$150$

Solution

(B) Let the direction angles of the line be $\alpha = 45^{\circ}$,$\beta = 60^{\circ}$,and $\gamma = \theta$.
We know that the sum of the squares of the direction cosines is $1$,i.e.,$\cos^{2}\alpha + \cos^{2}\beta + \cos^{2}\gamma = 1$.
Substituting the given values: $\cos^{2}(45^{\circ}) + \cos^{2}(60^{\circ}) + \cos^{2}\theta = 1$.
$(\frac{1}{\sqrt{2}})^{2} + (\frac{1}{2})^{2} + \cos^{2}\theta = 1$.
$\frac{1}{2} + \frac{1}{4} + \cos^{2}\theta = 1$.
$\frac{3}{4} + \cos^{2}\theta = 1$.
$\cos^{2}\theta = 1 - \frac{3}{4} = \frac{1}{4}$.
$\cos\theta = \pm \frac{1}{2}$.
Since the angle $\theta$ is obtuse,$\cos\theta$ must be negative,so $\cos\theta = -\frac{1}{2}$.
Therefore,$\theta = 120^{\circ}$.
399
MathematicsMediumMCQMHT CET · 2025
If the lines $\frac{3-x}{2}=\frac{5y-2}{3\lambda+1}=5-z$ and $\frac{x+2}{-1}=\frac{1-3y}{7}=\frac{4-z}{2\mu}$ are at right angles,then $7\lambda-10\mu=$
A
$23$
B
$\frac{23}{3}$
C
$137$
D
$\frac{137}{5}$

Solution

(B) First,we rewrite the equations of the lines in standard form $\frac{x-x_1}{a}=\frac{y-y_1}{b}=\frac{z-z_1}{c}$.
For the first line: $\frac{x-3}{-2}=\frac{y-2/5}{(3\lambda+1)/5}=\frac{z-5}{-1}$.
The direction ratios are $\vec{v_1} = (-2, \frac{3\lambda+1}{5}, -1)$.
For the second line: $\frac{x+2}{-1}=\frac{y-1/3}{-7/3}=\frac{z-4}{-2\mu}$.
The direction ratios are $\vec{v_2} = (-1, -7/3, -2\mu)$.
Since the lines are at right angles,their dot product is zero: $\vec{v_1} \cdot \vec{v_2} = 0$.
$(-2)(-1) + (\frac{3\lambda+1}{5})(-\frac{7}{3}) + (-1)(-2\mu) = 0$.
$2 - \frac{21\lambda+7}{15} + 2\mu = 0$.
Multiply by $15$: $30 - (21\lambda+7) + 30\mu = 0$.
$30 - 21\lambda - 7 + 30\mu = 0$.
$23 - 21\lambda + 30\mu = 0 \implies 21\lambda - 30\mu = 23$.
Dividing by $3$: $7\lambda - 10\mu = \frac{23}{3}$.
400
MathematicsMediumMCQMHT CET · 2025
The projection of the line segment joining the points $(2,1,-3)$ and $(-1,0,2)$ on the line whose direction ratios are $3,2,6$ is
A
$\frac{19}{7}$ units
B
$\frac{17}{7}$ units
C
$\frac{11}{7}$ units
D
$\frac{15}{7}$ units

Solution

(A) Let the points be $P(2,1,-3)$ and $Q(-1,0,2)$.
The vector $\vec{PQ} = (-1-2)\hat{i} + (0-1)\hat{j} + (2-(-3))\hat{k} = -3\hat{i} - 1\hat{j} + 5\hat{k}$.
The direction ratios of the line are $3, 2, 6$. The direction vector of the line is $\vec{v} = 3\hat{i} + 2\hat{j} + 6\hat{k}$.
The magnitude of the direction vector is $|\vec{v}| = \sqrt{3^2 + 2^2 + 6^2} = \sqrt{9 + 4 + 36} = \sqrt{49} = 7$.
The unit vector along the line is $\hat{u} = \frac{3\hat{i} + 2\hat{j} + 6\hat{k}}{7}$.
The projection of the line segment $PQ$ on the line is given by the absolute value of the dot product of $\vec{PQ}$ and $\hat{u}$:
Projection $= |\vec{PQ} \cdot \hat{u}| = |(-3\hat{i} - 1\hat{j} + 5\hat{k}) \cdot \frac{(3\hat{i} + 2\hat{j} + 6\hat{k})}{7}|$
$= |\frac{(-3)(3) + (-1)(2) + (5)(6)}{7}| = |\frac{-9 - 2 + 30}{7}| = |\frac{19}{7}| = \frac{19}{7}$ units.

Vedclass Products

For Students

Vedclass Test Series

Mock tests in real MHT CET style covering Mathematics with performance analysis. 5-day free trial.

Start Free Trial
For Teachers

Exam Paper Generator

Generate Set A/B/C/D Mathematics papers from 7.5L+ questions in 2 minutes. 3 chapters free.

Try Free
For Institutes

Online Exam Module

Run live MHT CET mock exams with unlimited students, 360° analytics & white-label branding.

See Demo

Frequently Asked Questions

How many Mathematics questions are in MHT CET 2025?

There are 795 Mathematics questions from the MHT CET 2025 paper on Vedclass, each with a detailed step-by-step solution in English.

Are MHT CET 2025 Mathematics solutions available in English?

Yes. All solutions on this page are in English. You can also switch to English or Hindi using the language buttons above the questions.

Can I practice MHT CET 2025 Mathematics as a timed test?

Yes. Use the Vedclass Test Series to attempt a full MHT CET mock test covering Mathematics with time limits and instant score analysis.

Can teachers create Mathematics papers from MHT CET previous year questions?

Yes. The Vedclass Exam Paper Generator lets teachers mix MHT CET Mathematics questions and generate Set A/B/C/D papers in minutes.

For Teachers & Institutes

Build a Custom Mathematics Paper

Pick MHT CET 2025 Mathematics questions, set difficulty, and generate Set A/B/C/D in 2 minutes.