Mathematics/General Ability MCQs
Topic Notes: Mathematics/General Ability
MCQs and preparation resources for competitive exams, covering important concepts, past papers, and detailed explanations.
Plato
- Biography: Ancient Greek philosopher (427–347 BCE), student of Socrates and teacher of Aristotle, founder of the Academy in Athens.
- Important Ideas:
- Theory of Forms
- Philosopher-King
- Ideal State
171
If the AM and GM of roots of a quadratic equation are 8 and 5 respectively, then find the quadratic equation.
Answer:
x^2 - 16x + 25 = 0
Let the roots be α and β. AM = (α+β)/2 = 8, so sum of roots (α+β) = 16. GM = sqrt(αβ) = 5, so product of roots (αβ) = 25. The quadratic equation is x^2 - (sum)x + (product) = 0, which gives x^2 - 16x + 25 = 0.
172
What is the harmonic mean of 4 and 6?
Answer:
4.8
The formula for the harmonic mean of a and b is HM = 2ab / (a+b). Here, a=4 and b=6. HM = (2 * 4 * 6) / (4 + 6) = 48 / 10 = 4.8.
173
Insert 4 arithmetic means between 4 and 29.
Answer:
9, 14, 19, 24
We need to form an AP: 4, A1, A2, A3, A4, 29. The total number of terms is 6. Using a_n = a + (n-1)d, we get 29 = 4 + (6-1)d, which is 25 = 5d, so d = 5. The means are 4+5=9, 9+5=14, 14+5=19, 19+5=24.
174
If log(a), log(b), and log(c) are in AP, then what can be said about a, b, and c?
Answer:
They are in GP
If log(a), log(b), log(c) are in AP, then 2*log(b) = log(a) + log(c). Using logarithm properties, this becomes log(b^2) = log(ac). This implies b^2 = ac. This condition signifies that a, b, and c are in Geometric Progression (GP).
175
The interior angles of a polygon are in AP. The smallest angle is 120 degrees and the common difference is 5 degrees. Find the number of sides of the polygon.
Answer:
9
The sum of interior angles of an n-sided polygon is (n-2)*180. The angles form an AP with a=120 and d=5, so their sum is S_n = (n/2)[2(120) + (n-1)5] = (n/2)[240 + 5n - 5] = (n/2)[235 + 5n]. Equating the two sums: (n-2)180 = (n/2)[235 + 5n]. Multiply by 2: 360n - 720 = 235n + 5n^2. This gives a quadratic equation: 5n^2 - 125n + 720 = 0. Divide by 5: n^2 - 25n + 144 = 0. Factors are (n-9)(n-16) = 0. If n=16, the largest angle is 120 + 15(5) = 195 degrees. But an interior angle of a convex polygon must be < 180 degrees. So n=16 is rejected. The only valid answer is 9.
176
Find the sum of the series 1 + 3x + 5x^2 + 7x^3 + ... to infinity, where |x| < 1.
Answer:
(1+x)/(1-x)^2
This is an Arithmetico-Geometric Progression (AGP). Let S = 1 + 3x + 5x^2 + ... Then xS = x + 3x^2 + 5x^3 + ... Subtracting gives S - xS = 1 + 2x + 2x^2 + 2x^3 + ... = 1 + 2x(1 + x + x^2 + ...) = 1 + 2x/(1-x) = (1-x+2x)/(1-x) = (1+x)/(1-x). So, S(1-x) = (1+x)/(1-x), which yields S = (1+x)/(1-x)^2.
177
The sum of the cubes of the first n natural numbers is equal to:
Answer:
All of the above
The formula for the sum of cubes 1^3 + 2^3 + ... + n^3 is [n(n+1)/2]^2. Since n(n+1)/2 is the sum of the first n natural numbers, the sum of their cubes is equal to the square of their sum. Expanding the formula gives n^2(n+1)^2/4. Therefore, all options are correct representations.
178
Find the sum of the series 1^2 + 3^2 + 5^2 + ... to n terms.
Answer:
n(4n^2 - 1)/3
The nth term is a_n = (2n-1)^2 = 4n^2 - 4n + 1. The sum is S_n = 4*Sum(n^2) - 4*Sum(n) + Sum(1) = 4*[n(n+1)(2n+1)/6] - 4*[n(n+1)/2] + n. Simplifying this gives n(4n^2 - 1) / 3. Notice option c is mathematically equivalent since (2n-1)(2n+1) = 4n^2 - 1. Both a and c are correct expressions, but a is in expanded form inside the bracket.
179
What is the sum of the first n terms of the series 1*2 + 2*3 + 3*4 + ...?
Answer:
n(n+1)(n+2)/3
The nth term of the series is a_n = n(n+1) = n^2 + n. The sum S_n = Sum(n^2) + Sum(n). We know Sum(n^2) = n(n+1)(2n+1)/6 and Sum(n) = n(n+1)/2. S_n = n(n+1) [ (2n+1)/6 + 1/2 ] = n(n+1) [ (2n+1+3)/6 ] = n(n+1)(2n+4)/6 = n(n+1)2(n+2)/6 = n(n+1)(n+2)/3.
180
If 1/x, 1/y, 1/z are in AP, then y is equal to:
Answer:
2xz / (x+z)
If 1/x, 1/y, 1/z are in AP, then the middle term is the arithmetic mean of the others: 1/y = [1/x + 1/z] / 2. This simplifies to 1/y = [ (x+z) / xz ] / 2 = (x+z) / 2xz. Inverting both sides gives y = 2xz / (x+z), which is the formula for the harmonic mean of x and z.