Foundation of JEE algebra — functions, roots, and the Argand plane
Sets & Set Operations
Types of Sets
Empty set ∅: no elements. Singleton: one element. Finite/Infinite by cardinality. Universal set U: all elements under discussion. Power set P(A): set of all subsets; |P(A)| = 2ⁿ for |A|=n.
Set Operations
Union A∪B: elements in A or B. Intersection A∩B: elements in both. Difference A−B: in A but not B. Complement Aᶜ: elements in U not in A. Symmetric difference A△B = (A−B)∪(B−A).
De Morgan's Laws
(A∪B)ᶜ = Aᶜ ∩ Bᶜ
(A∩B)ᶜ = Aᶜ ∪ Bᶜ
Used to convert between union and intersection when complementing. Critical for JEE probability problems.
💡Composition: \((g\circ f)(x) = g(f(x))\) — apply f first, then g. Inverse function \(f^{-1}\) exists iff f is bijective. Domain of \(f^{-1}\) = Range of f.
Quadratic Equations
Standard form: \(ax^{2} + bx + c = 0\) (a ≠ 0). The discriminant \(D = b^{2} - 4ac\) determines the nature of roots.
D
Nature of roots
Comment
\(D > 0\)
Two distinct real roots
Rational if D is a perfect square and \(a, b, c \in \mathbb{Q}\)
\(D = 0\)
Two equal real roots (repeated)
\(x = -b/(2a)\)
\(D < 0\)
Two complex conjugate roots
\(\alpha = p+qi,\ \beta = p-qi\); a, b, c real
Vieta's Formulas
For \(ax^2+bx+c=0\) with roots α, β:
\(\alpha + \beta = -b/a\) (sum of roots)
\(\alpha\beta = c/a\) (product of roots)
Form equation from roots: \(x^{2} - (\alpha+\beta)x + \alpha\beta = 0\)
💡Range of quadratic: For \(f(x)=ax^2+bx+c\) with \(a>0\), minimum value \(= -D/(4a)\) at \(x=-b/(2a)\). Max/min of rational expressions like \((ax^2+bx+c)/(dx^2+ex+f)\): set \(y\) = expression, rearrange as quadratic in x, require \(D\ge 0\) for real x.
Note: \(y=1/3\) when \(x=-1\); \(y=3\) when \(x=1\). The denominator \(x^2-x+1 = (x-\tfrac{1}{2})^2+\tfrac{3}{4} > 0\) always, so no restriction from denominator. ✓
Example 5MediumIf \(z = 1+i\), find \(z^{10}\) using De Moivre's theorem
If \(z = 1+i\), find \(z^{10}\) using De Moivre's theorem
Convert to polar: \(|z| = \sqrt2,\ \arg(z) = \pi/4\)
$$ z = \sqrt2 \cdot e^{i\pi/4} = \sqrt2 (\cos \pi/4 + i \sin \pi/4) $$
$$ z^{10} = (\sqrt2)^{10} \cdot (\cos \pi/4 + i \sin \pi/4)^{10} = 2^{5} \cdot (\cos(10\pi/4) + i \sin(10\pi/4)) $$
Example 6HardIf α, β are roots of \(x^2-px+q=0\) and \(\alpha^4, \beta^4\) are roots of \(x^2-rx+s=0\), show that the discriminant of \(x^2-4qx+2q^2-r = 0\) is non-negative
If α, β are roots of \(x^2-px+q=0\) and \(\alpha^4, \beta^4\) are roots of \(x^2-rx+s=0\), show that the discriminant of \(x^2-4qx+2q^2-r = 0\) is non-negative
From first equation: \(\alpha+\beta = p, \alpha\beta = q\)
From second equation: \(\alpha^{4}+\beta^{4} = r, \alpha^{4}\beta^{4} = s\)
Since \(4(p^2-2q)^2 \ge 0\) for all real p, q, the discriminant is always non-negative. ✓
📊
Sets, Quadratics & Complex — Key Diagrams
Click any diagram to zoom
Three-Set Venn Diagram — Inclusion-Exclusion
The 7 non-overlapping regions of a three-set Venn diagram. The inclusion-exclusion formula adds all individual regions, corrects for double-counting of pairwise intersections, then adds back the triple intersection (over-subtracted).
Argand Plane — Complex Number Representation
The Argand plane represents \(z=a+ib\) as point (a, b). The modulus \(r=|z|\) is the distance from origin; the argument θ is the angle from positive real axis. The conjugate \(\bar z\) is the reflection across the real axis.
Quadratic Parabola — Three Cases by Discriminant
For \(ax^2+bx+c\) with \(a>0\): \(D>0\) gives two x-intercepts; \(D=0\) gives one tangent point at \(x=-b/(2a)\); \(D<0\) gives no real roots (parabola entirely above x-axis). Flip for \(a<0\).
⚡
Sets, Quadratics & Complex — Quick Quiz
Question 1
In a group of 70 people: 37 like coffee, 52 like tea, and each person likes at least one. How many like both?
General term: \(T_{r+1} = C(n,r)\cdot a^{n-r}\cdot b^r\). (r starts from 0.)
Middle term(s): If n is even: \(T_{n/2+1}\) (single middle term). If n is odd: \(T_{(n+1)/2}\) and \(T_{(n+3)/2}\) (two middle terms).
Term independent of x: In \((x^a + x^{-b})^n\), set power of x = 0 → solve for r.
Coefficient sum properties:
Put \(x=1\): sum of all coefficients \(= 2^n\).
Put \(x=-1\): alternating sum \(C_0 - C_1 + C_2 - \ldots = 0\).
$$ C_{0}+C_{2}+C_{4}+\ldots = C_{1}+C_{3}+C_{5}+\ldots = 2^{n-1}. $$
Greatest term: Compare \(|T_{r+1}/T_r| \ge 1\), solve for r → greatest integer r gives the greatest term.
Multinomial: \((a+b+c)^n = \sum n!/(p!q!r!)\cdot a^p b^q c^r\) where \(p+q+r=n\).
💡JEE Tip: For finding the numerically greatest term in \((1+x)^n\), form the ratio \(|T_{r+1}/T_r| = |(n-r+1)x/r|\). Set ≥ 1 and solve. The answer is the floor of the result. Also memorise: \((1+x)^n \approx 1+nx\) for \(|x|\ll 1\) (binomial approximation used in Physics).
⚠Common Error: When using AM ≥ GM, all terms must be positive. Also: \(\Sigma k^3 = [n(n+1)/2]^2\) is often written as \((\Sigma k)^2\) — this is the "Nicomachus theorem" and a very popular JEE identity. Don't confuse \(\Sigma k^2 = n(n+1)(2n+1)/6\) (the coefficient 2n+1 makes it different).
The middle geometric run sums to \(2x\dfrac{1-x^{n-1}}{1-x}\), giving \((1-x)S = 1 + \dfrac{2x(1-x^{n-1})}{1-x} - (2n-1)x^{n}.\)
✓ As \(n\to\infty\) with \(|x|<1\): \((1-x)S = 1 + \dfrac{2x}{1-x} = \dfrac{1+x}{1-x}\), so \(S_{\infty} = \dfrac{1+x}{(1-x)^2}.\)
📊
Sequences & Binomial — Visual Concepts
Click any diagram to zoom
Pascal's Triangle — Binomial Coefficients
Pascal's triangle. Row n contains the binomial coefficients C(n,0), C(n,1), …, C(n,n). Each entry equals the sum of the two entries above it. Row sum = 2ⁿ (put x=1 in binomial theorem). Diagonal sums give Fibonacci numbers.
AM-GM-HM Inequality — Geometric Interpretation
For positive numbers a and b, HM ≤ GM ≤ AM, with equality only when a = b. Illustrated with a=4, b=9: HM=72/13≈5.54 < GM=6 < AM=6.5. The AM is the midpoint of a and b on the number line; GM is the "geometric mean" (where it lies between them depends on ratio b/a).
⚡
Sequences & Binomial — Quick Quiz
Question 1
The sum of the infinite GP \(1 + 1/3 + 1/9 + 1/27 + \ldots\) is:
\(S_\infty = a/(1-r) = 1/(1-1/3) = 1/(2/3) = 3/2\). Here \(a=1, r=1/3, |r|<1\) so infinite sum exists. Answer: C ✓
Question 2
The middle term in the expansion of \((x + 1/x)^{10}\) is:
\(n=10\) (even) → single middle term is \(T_{n/2+1} = T_6\). \(T_6 = C(10,5)\cdot x^{10-5}\cdot(1/x)^5 = C(10,5)\cdot x^5\cdot x^{-5} = C(10,5)\cdot x^0 = 252\). Answer: B ✓. Note the middle term is also independent of x here.
Question 3
The value of \(1^3 + 2^3 + 3^3 + \ldots + 10^3\) is:
Binomial Distribution: \(P(X=r) = C(n,r)\cdot p^r\cdot q^{n-r}\) where \(p+q=1, r=0,1,\ldots,n\). Mean \(= np\), Variance \(= npq\).
💡JEE Tip: For circular permutations: always fix one object and arrange the rest \((n-1)!\). For necklace/bracelet: divide by 2 further (clockwise = counter-clockwise). For "at least one" type probability: \(P(\text{at least one}) = 1 - P(\text{none})\). This complement approach is almost always faster than direct counting.
⚠Common Error: Independent ≠ Mutually Exclusive. Mutually exclusive events cannot both occur → if \(P(A)>0\) and \(P(B)>0\), they CANNOT be independent AND mutually exclusive. Independent: \(P(A\cap B)=P(A)P(B)\). Mutually exclusive: \(P(A\cap B)=0\).
Requires \(\{A_i\}\) to be mutually exclusive and exhaustive. Denominator \(= P(B)\) by law of total probability.
Binomial: \(P(X=r) = C(n,r)\cdot p^r\cdot q^{n-r}\) | Mean \(=np\) | Var \(=npq\)
n independent trials, \(p=P(\text{success}), q=1-p\). \(X \sim B(n,p)\).
🧮
P&C & Probability — Solved Examples
Example 1EasyCircular Permutation
In how many ways can 8 people be seated around a circular table? If 2 specific people must sit together, how many ways?
Circular arrangement of n distinct: \((n-1)! = 7! = 5040\) ways.
2 specific people together: treat them as one unit → 7 units in circle → \((7-1)! = 6! = 720\) ways to arrange units. Within the pair, they can swap: ×2 = 1440 ways.
✓ Total with pair together: \(6!\times 2 = 720\times 2 =\) 1440. Total without restriction: \(7! =\) 5040.
Example 2MediumBayes' Theorem — Medical Test
A disease affects 1% of the population. A test for it is 95% accurate (95% true positive rate; 5% false positive rate). If a person tests positive, what is the probability they actually have the disease?
Let D = has disease, T = tests positive. \(P(D) = 0.01, P(D') = 0.99, P(T|D) = 0.95, P(T|D') = 0.05\).
✓ Despite a 95% accurate test, only a 16% chance of having the disease when testing positive — because the disease is rare (base rate 1%). This is the base rate fallacy and a classic JEE/real-world Bayes application.
Example 3HardWords from Letters — With Restrictions
How many 4-letter words (with or without meaning) can be formed from the letters of MATHEMATICS such that: (a) no restrictions, (b) all letters distinct?
MATHEMATICS: M(2), A(2), T(2), H, E, I, C, S → 11 letters total with 3 pairs of duplicates. Distinct letters: M, A, T, H, E, I, C, S = 8 types.
All 4 letters distinct: choose 4 from 8 types → \(C(8,4)\), then arrange → \(C(8,4)\times 4! = 70\times 24 =\) 1680.
No restriction — consider cases: (i) all distinct: 1680. (ii) exactly one pair (e.g., MM, AA, or TT): \(C(3,1)\times C(7,2)\times 4!/2! = 3\times 21\times 12 = 756\). (iii) two pairs: \(C(3,2)\times 4!/(2!2!) = 3\times 6 = 18\).
✓ Total = 1680 + 756 + 18 = 2454. Key: systematically split into cases by the number of repeated pairs.
Example 4HardBayes' Theorem — Disease Test
A disease affects 1% of a population. A test is 99% sensitive (correctly flags the sick) and 95% specific (correctly clears the healthy). If a person tests positive, what is the probability they actually have the disease?
Let \(D\) = has disease, \(+\) = tests positive. \(P(D)=0.01,\ P(+\mid D)=0.99,\ P(+\mid D^c)=1-0.95=0.05.\)
Total probability of a positive: \(P(+) = P(+\mid D)P(D) + P(+\mid D^c)P(D^c) = 0.99(0.01) + 0.05(0.99) = 0.0099 + 0.0495 = 0.0594.\)
Bayes' tree: \(P(\text{Disease}|\text{Positive test}) = 0.0095/(0.0095+0.0495) = 0.0095/0.059 \approx 16.1\%\). The base rate (1% prevalence) dominates — even with a 95% accurate test, most positives are false positives when the disease is rare. Always draw the tree in Bayes' problems to avoid errors.
⚡
P&C & Probability — Quick Quiz
Question 1
The number of ways to arrange n people around a circular table is:
In circular arrangement, one position is fixed (rotations of same arrangement are identical). So n people → fix 1 → arrange remaining \((n-1) \to (n-1)!\) ways. Note: \((n-1)!/2\) is for necklaces/bracelets where reflections are also identical. Answer: B ✓
Question 2
If \(P(A) = 0.4, P(B) = 0.3\), and A and B are independent, then \(P(A\cup B) = ?\)
Independent: \(P(A\cap B)=P(A)\cdot P(B)=0.4\times 0.3=0.12\). \(P(A\cup B)=P(A)+P(B)-P(A\cap B)=0.4+0.3-0.12=0.58\). Answer: D ✓. Note: 0.7 would be the answer if they were mutually exclusive (which is different from independent).
Question 3
The number of ways to distribute 7 identical balls into 3 distinct boxes (each box can be empty) is:
Stars and bars: n identical into r distinct boxes (empty allowed) \(= C(n+r-1, r-1) = C(7+3-1, 3-1) = C(9,2) = 36\). Note: \(7^3=343\) would be for 7 DISTINCT balls into 3 boxes. Answer: C ✓
Identity: \(A\cdot\operatorname{adj}(A) = \operatorname{adj}(A)\cdot A = \det(A)\cdot I\).
\(2\times 2\) inverse shortcut: For \(A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}\), \(A^{-1} = (1/\det)\cdot\begin{bmatrix} d & -b \\ -c & a \end{bmatrix}\).
Cayley-Hamilton theorem: Every matrix satisfies its own characteristic equation. If \(\lambda^2-5\lambda+6=0\) is char. poly., then \(A^2-5A+6I=0\).
System of Linear Equations AX = B
Unique solution: \(\det(A) \ne 0 \to X = A^{-1}B\).
No solution (inconsistent): \(\det(A) = 0\) and \((\operatorname{adj} A)B \ne 0\).
Infinite solutions: \(\det(A) = 0\) and \((\operatorname{adj} A)B = 0\).
Cramer's rule: \(x_1 = D_1/D, x_2 = D_2/D, x_3 = D_3/D\) where \(D = \det(A), D_i = \det\) with the i-th column replaced by B.
Homogeneous system \(AX = 0\): always has trivial solution \((0,0,0)\). Non-trivial solution exists iff \(\det(A) = 0\).
💡JEE Tip: For a \(3\times 3\) matrix A with elements, \(\det(A)\) can often be reduced by row operations (\(R_1 \to R_1-R_2\), etc.) to create zeros, then expand along a row/col with many zeros. Also: if \(\det(A)=0\) for a homogeneous system, the system has infinitely many non-trivial solutions — this is the key condition in JEE questions asking "for what k does the system have non-trivial solution?"
⚠Common Error: \(\det(kA) = k^n\cdot\det(A)\) for an \(n\times n\) matrix — NOT \(k\cdot\det(A)\). So \(\det(2A)\) for \(3\times 3 = 2^3\cdot\det(A) = 8\cdot\det(A)\). Many students write \(\det(2A) = 2\cdot\det(A)\) which is wrong. Also: \((AB)^T = B^T A^T\) (reverse order — same as for inverse: \((AB)^{-1} = B^{-1}A^{-1}\)).
\(\operatorname{adj}(A)\) = transpose of cofactor matrix. Exists only if \(\det(A)\ne 0\) (A is non-singular).
\(2\times 2\): \(A^{-1} = (1/\det)\cdot\begin{bmatrix} d & -b \\ -c & a \end{bmatrix}\) where \(A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}\), \(\det = ad-bc\)
Swap diagonal, negate off-diagonal, divide by determinant. Fastest method for \(2\times 2\).
So \(\Delta = (a-b)(b-c)(c-a)\) (rearranged sign). It vanishes whenever any two of \(a,b,c\) are equal — the factor theorem for determinants.
✓ \(\Delta = (a-b)(b-c)(c-a).\)
Example 5HardConsistency of a 3-Variable System
For what value of \(\lambda\) does the system \(x+y+z=6,\ x+2y+3z=14,\ x+2y+\lambda z = \mu\) have (a) a unique solution, (b) infinitely many solutions, (c) no solution?
Decision tree for \(AX=B\). If \(\det(A)\ne 0\): unique solution \(X=A^{-1}B\) (green). If \(\det(A)=0\): check \((\operatorname{adj} A)B\) — if zero, infinitely many solutions (blue); if non-zero, no solution (red/inconsistent). For homogeneous \(AX=0\): always consistent (zero solution), non-trivial solutions exist iff \(\det(A)=0\).
⚡
Matrices & Determinants — Quick Quiz
Question 1
If A is a \(3\times 3\) matrix with \(\det(A) = 5\), then \(\det(2A) = ?\)
For an \(n\times n\) matrix: \(\det(kA) = k^n\cdot\det(A)\). Here \(n=3, k=2\): \(\det(2A) = 2^3\cdot\det(A) = 8\times 5 = 40\). A common mistake is writing \(\det(2A)=2\cdot\det(A)=10\), which ignores the n-th power. Answer: C ✓
Question 2
For the system \(AX=0\) (homogeneous), a non-trivial solution (other than \(X=0\)) exists if and only if:
For homogeneous \(AX=0\): if \(\det(A)\ne 0\), the only solution is \(X=A^{-1}\cdot 0=0\) (trivial). For non-trivial solutions, we need \(\det(A)=0\) (singular matrix). This is the key JEE condition: "find k so that the system has non-trivial solution" → set \(\det(A)=0\) and solve for k. Answer: A ✓
Question 3
If A is a skew-symmetric matrix of order 3, then \(\det(A) = ?\)
Skew-symmetric matrix: \(A = -A^T\). Taking determinants: \(\det(A) = \det(-A^T) = (-1)^3\cdot\det(A^T) = -\det(A)\) (since \(n=3\) is odd). So \(\det(A) = -\det(A) \to 2\det(A)=0 \to \det(A) = 0\). For EVEN order, det can be non-zero. Answer: B ✓