All Categories MCQs
Topic Notes: All Categories
General Description
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
4211
If the sum of n terms of a series is S_n = n(n+1)(n+2)/6, what is the nth term?
Answer:
n(n+1)/2
a_n = S_n - S_{n-1} = n(n+1)(n+2)/6 - (n-1)n(n+1)/6. Factor out n(n+1)/6 to get [n(n+1)/6] * [(n+2) - (n-1)] = [n(n+1)/6] * [3] = n(n+1)/2. This is the formula for the nth triangular number.
4212
Find the sum of the series 1 - 2 + 3 - 4 + 5 - 6 + ... up to 100 terms.
Answer:
-50
Group the terms in pairs: (1 - 2) + (3 - 4) + (5 - 6) + ... + (99 - 100). There are 100 terms, so there are 50 pairs. Each pair evaluates to -1. The sum is 50 * (-1) = -50.
4213
If a^2, b^2, c^2 are in AP, then what progression do 1/(b+c), 1/(c+a), 1/(a+b) form?
Answer:
AP
This is a standard algebraic property. If a^2, b^2, c^2 are in AP, then adding ab+bc+ca to each term preserves the AP. Thus a^2+ab+bc+ca, b^2+ab+bc+ca, c^2+ab+bc+ca are in AP. Factoring gives (a+b)(a+c), (b+c)(a+b), (c+a)(c+b) are in AP. Dividing each term by (a+b)(b+c)(c+a) yields 1/(b+c), 1/(c+a), 1/(a+b) which are therefore in AP.
4214
The geometric mean of two numbers is 8 and their harmonic mean is 6.4. What is their arithmetic mean?
Answer:
10
The relationship between AM (A), GM (G), and HM (H) is G^2 = A * H. We are given G = 8 and H = 6.4. Substituting these values: 8^2 = A * 6.4 => 64 = A * 6.4 => A = 64 / 6.4 = 10.
4215
What is the 10th term of the sequence 1, 2, 4, 7, 11, ...?
Answer:
46
The differences between consecutive terms are 1, 2, 3, 4, ... which form an AP. The nth term of such a sequence is given by a_n = a_1 + Sum(first n-1 differences). a_10 = 1 + (1 + 2 + 3 + ... + 9) = 1 + 9(10)/2 = 1 + 45 = 46.
4216
If the sum of an infinite geometric series is 3 and the sum of its first two terms is 8/3, find the first term.
Answer:
2 or 4
S = a/(1-r) = 3 => a = 3(1-r). The sum of first two terms is a + ar = a(1+r) = 8/3. Substitute a = 3(1-r): 3(1-r)(1+r) = 8/3 => 3(1-r^2) = 8/3 => 1-r^2 = 8/9 => r^2 = 1/9 => r = ±1/3. If r = 1/3, a = 3(1-1/3) = 2. If r = -1/3, a = 3(1+1/3) = 4. The first term can be 2 or 4.
4217
The sum of three numbers in a GP is 21 and the sum of their squares is 189. Find the numbers.
Answer:
3, 6, 12
Let the numbers be a, ar, ar^2. Given a(1+r+r^2) = 21 and a^2(1+r^2+r^4) = 189. Note that 1+r^2+r^4 = (1+r+r^2)(1-r+r^2). Dividing the second equation by the square of the first: a^2(1+r^2+r^4) / [a^2(1+r+r^2)^2] = 189 / 441. This simplifies to (1-r+r^2)/(1+r+r^2) = 3/7. Cross-multiplying gives 7-7r+7r^2 = 3+3r+3r^2 => 4r^2 - 10r + 4 = 0 => 2r^2 - 5r + 2 = 0. Factoring gives r=2 or r=1/2. If r=2, a(1+2+4) = 21 => 7a=21 => a=3. The numbers are 3, 6, 12.
4218
Find the sum of all natural numbers between 1 and 100 that are not divisible by 5.
Answer:
4000
Sum of all natural numbers from 1 to 100 = 100(101)/2 = 5050. The numbers divisible by 5 form an AP: 5, 10, ..., 100. The number of terms is 20. The sum of this AP is (20/2)(5 + 100) = 10 * 105 = 1050. The sum of numbers not divisible by 5 is the total sum minus the sum of multiples of 5: 5050 - 1050 = 4000.
4219
How many terms are identical in the two arithmetic progressions 2, 4, 6, 8, ... up to 100 terms and 3, 6, 9, ... up to 80 terms?
Answer:
33
The first AP consists of multiples of 2, its last term is 2*100=200. The second AP consists of multiples of 3, its last term is 3*80=240. The identical terms are numbers that are multiples of both 2 and 3, meaning they are multiples of LCM(2,3) = 6. We need to find the number of multiples of 6 that are less than or equal to the smaller maximum value (200). 200 / 6 = 33.33... So, there are 33 identical terms.
4220
If the sum of n terms of an AP is 3n^2 + 2n, find its 15th term.
Answer:
89
The nth term is a_n = S_n - S_{n-1}. So a_15 = S_15 - S_14. S_15 = 3(15^2) + 2(15) = 3(225) + 30 = 675 + 30 = 705. S_14 = 3(14^2) + 2(14) = 3(196) + 28 = 588 + 28 = 616. Therefore, a_15 = 705 - 616 = 89. Alternatively, a_n = (3n^2+2n) - (3(n-1)^2+2(n-1)) = 6n - 1. For n=15, 6(15) - 1 = 89.