Skip to content

CBSE Mathematics Study Guide

Overview

This guide covers the CBSE Class 11 and 12 Mathematics syllabus (NCERT). It is structured by topic with definitions, key results, worked examples, and exam-focused advice.

The CBSE Class 12 board exam carries 80 marks (theory) + 20 marks (internal assessment). The paper consists of objective questions (MCQs), short-answer questions (2-3 marks), and long-answer questions (5-6 marks).


1. Sets and Functions

1.1 Sets and Set Notation

A set is a well-defined collection of distinct objects. Sets are denoted by capital letters (A,B,CA, B, C) and elements by lowercase letters (a,b,ca, b, c).

Notation.

  • aAa \in A: aa is an element of AA
  • aAa \notin A: aa is not an element of AA
  • ABA \subseteq B: AA is a subset of BB (every element of AA is also in BB)
  • ABA \subset B: AA is a proper subset of ABA \neq B
  • \emptyset: the empty set
  • A|A| or n(A)n(A): the cardinality (number of elements) of AA

Set operations.

OperationNotationMeaning
UnionABA \cup BAll elements in AA or BB or both
IntersectionABA \cap BAll elements in both AA and BB
ComplementAA' or Aˉ\bar{A}All elements in the universal set UU not in AA
DifferenceABA - BElements in AA but not in BB

Laws.

  • Commutative: AB=BAA \cup B = B \cup A; AB=BAA \cap B = B \cap A
  • Associative: (AB)C=A(BC)(A \cup B) \cup C = A \cup (B \cup C)
  • Distributive: A(BC)=(AB)(AC)A \cup (B \cap C) = (A \cup B) \cap (A \cup C)
  • De Morgan: (AB)=AB(A \cup B)' = A' \cap B' and (AB)=AB(A \cap B)' = A' \cup B'

1.2 Venn Diagrams

Venn diagrams represent sets as overlapping circles inside a rectangle (the universal set).

n(AB)=n(A)+n(B)n(AB)n(A \cup B) = n(A) + n(B) - n(A \cap B)

For three sets:

n(ABC)=n(A)+n(B)+n(C)n(AB)n(AC)n(BC)+n(ABC)n(A \cup B \cup C) = n(A) + n(B) + n(C) - n(A \cap B) - n(A \cap C) - n(B \cap C) + n(A \cap B \cap C)

1.3 Relations

A relation RR from set AA to set BB is a subset of A×BA \times B.

Types of relations:

  • Reflexive: (a,a)R(a, a) \in R for all aAa \in A
  • Symmetric: (a,b)R(b,a)R(a, b) \in R \Rightarrow (b, a) \in R
  • Transitive: (a,b)R(a, b) \in R and (b,c)R(a,c)R(b, c) \in R \Rightarrow (a, c) \in R
  • Equivalence relation: reflexive, symmetric, and transitive

1.4 Functions

A function f:ABf: A \to B maps each element of AA to exactly one element of BB.

Key terms:

  • Domain: the set of all valid inputs
  • Codomain: the set BB into which ff maps
  • Range: the set of actual outputs {f(a):aA}\{f(a) : a \in A\}

Types of functions:

  • One-one (injective): f(a1)=f(a2)a1=a2f(a_1) = f(a_2) \Rightarrow a_1 = a_2
  • Onto (surjective): range = codomain (every element of BB is mapped to)
  • Bijective: both one-one and onto

Composition. If f:ABf: A \to B and g:BCg: B \to C, then (gf)(x)=g(f(x))(g \circ f)(x) = g(f(x)).

Inverse function. If ff is bijective, then f1f^{-1} exists and f1(f(x))=xf^{-1}(f(x)) = x.


2. Algebra

2.1 Matrices

A matrix is a rectangular array of numbers. An m×nm \times n matrix has mm rows and nn columns.

Operations.

  • Addition: A+BA + B is defined only when AA and BB have the same order
  • Scalar multiplication: kAkA multiplies each entry by kk
  • Matrix multiplication: If AA is m×pm \times p and BB is p×np \times n, then ABAB is m×nm \times n

Transpose. ATA^T is obtained by interchanging rows and columns. (AB)T=BTAT(AB)^T = B^T A^T.

2.2 Determinants

The determinant of a 2×22 \times 2 matrix:

abcd=adbc\begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc

For a 3×33 \times 3 matrix, expand by cofactors along any row or column:

A=a11C11+a12C12+a13C13|A| = a_{11}C_{11} + a_{12}C_{12} + a_{13}C_{13}

where Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij} and MijM_{ij} is the minor (determinant after removing row ii, column jj).

Properties:

  • AB=AB|AB| = |A| \cdot |B|
  • AT=A|A^T| = |A|
  • kA=knA|kA| = k^n |A| for an n×nn \times n matrix
  • If any two rows or columns are identical, A=0|A| = 0

2.3 Inverse of a Matrix

For a non-singular square matrix AA (A0|A| \neq 0):

A1=1Aadj(A)A^{-1} = \frac{1}{|A|} \text{adj}(A)

where adj(A)\text{adj}(A) is the adjoint (transpose of the cofactor matrix).

Solving systems of linear equations. For AX=BAX = B where AA is n×nn \times n:

  • If A0|A| \neq 0: unique solution X=A1BX = A^{-1}B
  • If A=0|A| = 0 and (adj A)B0(\text{adj } A)B \neq 0: no solution (inconsistent)
  • If A=0|A| = 0 and (adj A)B=0(\text{adj } A)B = 0: infinitely many solutions

2.4 Complex Numbers

A complex number is z=a+biz = a + bi where aa is the real part, bb is the imaginary part, and i2=1i^2 = -1.

Modulus: z=a2+b2|z| = \sqrt{a^2 + b^2}

Conjugate: zˉ=abi\bar{z} = a - bi; zzˉ=a2+b2=z2z\bar{z} = a^2 + b^2 = |z|^2

Polar form: z=r(cosθ+isinθ)z = r(\cos\theta + i\sin\theta) where r=zr = |z| and θ=arg(z)\theta = \arg(z).

2.5 Quadratic Equations

The general quadratic ax2+bx+c=0ax^2 + bx + c = 0 has roots:

x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

Discriminant Δ=b24ac\Delta = b^2 - 4ac:

  • Δ>0\Delta > 0: two distinct real roots
  • Δ=0\Delta = 0: one repeated real root
  • Δ<0\Delta < 0: two complex conjugate roots

Relations between roots α,β\alpha, \beta:

  • α+β=b/a\alpha + \beta = -b/a
  • αβ=c/a\alpha\beta = c/a

3. Calculus

3.1 Limits

limxaf(x)=L\lim_{x \to a} f(x) = L

means f(x)f(x) approaches LL as xx approaches aa.

Standard limits:

limx0sinxx=1limx01cosxx=0limx(1+1x)x=e\lim_{x \to 0} \frac{\sin x}{x} = 1 \qquad \lim_{x \to 0} \frac{1 - \cos x}{x} = 0 \qquad \lim_{x \to \infty}\left(1 + \frac{1}{x}\right)^x = e

L’Hôpital’s Rule. If limxaf(x)g(x)\lim_{x \to a}\frac{f(x)}{g(x)} is of the form 00\frac{0}{0} or \frac{\infty}{\infty}, then:

limxaf(x)g(x)=limxaf(x)g(x)\lim_{x \to a}\frac{f(x)}{g(x)} = \lim_{x \to a}\frac{f'(x)}{g'(x)}

provided the right-hand limit exists.

3.2 Derivatives

From first principles:

f(x)=limh0f(x+h)f(x)hf'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}

Standard derivatives:

f(x)f(x)f(x)f'(x)
xnx^nnxn1nx^{n-1}
sinx\sin xcosx\cos x
cosx\cos xsinx-\sin x
tanx\tan xsec2x\sec^2 x
exe^xexe^x
lnx\ln x1/x1/x
axa^xaxlnaa^x \ln a

Rules:

  • Sum: (f+g)=f+g(f + g)' = f' + g'
  • Product: (fg)=fg+fg(fg)' = f'g + fg'
  • Quotient: (fg)=fgfgg2\left(\frac{f}{g}\right)' = \frac{f'g - fg'}{g^2}
  • Chain: ddx[f(g(x))]=f(g(x))g(x)\frac{d}{dx}[f(g(x))] = f'(g(x)) \cdot g'(x)

3.3 Applications of Derivatives

Rate of change. If y=f(x)y = f(x), then dydx\dfrac{dy}{dx} is the instantaneous rate of change.

Increasing/Decreasing. ff is increasing where f(x)>0f'(x) > 0 and decreasing where f(x)<0f'(x) < 0.

Maxima and Minima. At a critical point f(x)=0f'(x) = 0:

  • Second derivative test: f(x)<0f''(x) < 0 \Rightarrow local max; f(x)>0f''(x) > 0 \Rightarrow local min
  • If f(x)=0f''(x) = 0, use the first derivative test

Tangent and Normal. At a point (x0,y0)(x_0, y_0) on y=f(x)y = f(x):

  • Tangent gradient: f(x0)f'(x_0)
  • Tangent equation: yy0=f(x0)(xx0)y - y_0 = f'(x_0)(x - x_0)
  • Normal gradient: 1/f(x0)-1/f'(x_0)

3.4 Integration

Integration is the reverse of differentiation.

Indefinite integrals (antiderivatives):

xndx=xn+1n+1+C(n1)1xdx=lnx+C\int x^n\,dx = \frac{x^{n+1}}{n+1} + C \quad (n \neq -1) \qquad \int \frac{1}{x}\,dx = \ln|x| + C

Methods:

  • Substitution: f(g(x))g(x)dx=f(u)du\int f(g(x))g'(x)\,dx = \int f(u)\,du where u=g(x)u = g(x)
  • Integration by parts: udv=uvvdu\int u\,dv = uv - \int v\,du

Definite integrals:

abf(x)dx=F(b)F(a)\int_a^b f(x)\,dx = F(b) - F(a)

Area under a curve:

Area between f(x) and x-axis from a to b=abf(x)dx\text{Area between } f(x) \text{ and } x\text{-axis from } a \text{ to } b = \left|\int_a^b f(x)\,dx\right|


4. Coordinate Geometry

4.1 Straight Lines

Slope-intercept form: y=mx+cy = mx + c

Point-slope form: yy1=m(xx1)y - y_1 = m(x - x_1)

Two-point form: yy1=y2y1x2x1(xx1)y - y_1 = \frac{y_2 - y_1}{x_2 - x_1}(x - x_1)

Distance formula: d=(x2x1)2+(y2y1)2d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}

Distance from a point to a line Ax+By+C=0Ax + By + C = 0:

d=Ax1+By1+CA2+B2d = \frac{|Ax_1 + By_1 + C|}{\sqrt{A^2 + B^2}}

Angle between two lines with slopes m1m_1 and m2m_2:

tanθ=m1m21+m1m2\tan\theta = \left|\frac{m_1 - m_2}{1 + m_1m_2}\right|

4.2 Conic Sections

Circle. Centre (h,k)(h, k), radius rr:

(xh)2+(yk)2=r2(x - h)^2 + (y - k)^2 = r^2

General form: x2+y2+2gx+2fy+c=0x^2 + y^2 + 2gx + 2fy + c = 0; centre (g,f)(-g, -f), radius g2+f2c\sqrt{g^2 + f^2 - c}.

Parabola. Focus-directrix form y2=4axy^2 = 4ax:

  • Focus: (a,0)(a, 0); Directrix: x=ax = -a; Axis: y=0y = 0; Latus rectum: 4a4a

Ellipse. x2a2+y2b2=1\dfrac{x^2}{a^2} + \dfrac{y^2}{b^2} = 1 where a>ba > b:

  • Foci: (±c,0)(\pm c, 0) where c2=a2b2c^2 = a^2 - b^2
  • Eccentricity: e=c/a<1e = c/a < 1
  • Latus rectum length: 2b2/a2b^2/a

Hyperbola. x2a2y2b2=1\dfrac{x^2}{a^2} - \dfrac{y^2}{b^2} = 1:

  • Foci: (±c,0)(\pm c, 0) where c2=a2+b2c^2 = a^2 + b^2
  • Eccentricity: e=c/a>1e = c/a > 1
  • Asymptotes: y=±baxy = \pm \dfrac{b}{a}x
  • Latus rectum length: 2b2/a2b^2/a

5. Trigonometry

5.1 Identities

Pythagorean identities:

sin2θ+cos2θ=11+tan2θ=sec2θ1+cot2θ=csc2θ\sin^2\theta + \cos^2\theta = 1 \qquad 1 + \tan^2\theta = \sec^2\theta \qquad 1 + \cot^2\theta = \csc^2\theta

Compound angle:

sin(A±B)=sinAcosB±cosAsinB\sin(A \pm B) = \sin A\cos B \pm \cos A\sin B cos(A±B)=cosAcosBsinAsinB\cos(A \pm B) = \cos A\cos B \mp \sin A\sin B tan(A±B)=tanA±tanB1tanAtanB\tan(A \pm B) = \frac{\tan A \pm \tan B}{1 \mp \tan A\tan B}

Double angle:

sin2A=2sinAcosAcos2A=cos2Asin2A=2cos2A1=12sin2A\sin 2A = 2\sin A\cos A \qquad \cos 2A = \cos^2 A - \sin^2 A = 2\cos^2 A - 1 = 1 - 2\sin^2 A

5.2 Trigonometric Equations

General solutions:

  • sinθ=sinαθ=nπ+(1)nα\sin\theta = \sin\alpha \Rightarrow \theta = n\pi + (-1)^n\alpha
  • cosθ=cosαθ=2nπ±α\cos\theta = \cos\alpha \Rightarrow \theta = 2n\pi \pm \alpha
  • tanθ=tanαθ=nπ+α\tan\theta = \tan\alpha \Rightarrow \theta = n\pi + \alpha

5.3 Inverse Trigonometric Functions

FunctionDomainRange
sin1x\sin^{-1}x[1,1][-1, 1][π/2,π/2][-\pi/2, \pi/2]
cos1x\cos^{-1}x[1,1][-1, 1][0,π][0, \pi]
tan1x\tan^{-1}xR\mathbb{R}(π/2,π/2)(-\pi/2, \pi/2)

Key identities:

sin1x+cos1x=π2tan1x+tan11x=π2 for x>0\sin^{-1}x + \cos^{-1}x = \frac{\pi}{2} \qquad \tan^{-1}x + \tan^{-1}\frac{1}{x} = \frac{\pi}{2}\text{ for } x > 0

5.4 Properties of Triangles

Sine rule: asinA=bsinB=csinC=2R\dfrac{a}{\sin A} = \dfrac{b}{\sin B} = \dfrac{c}{\sin C} = 2R

Cosine rule: a2=b2+c22bccosAa^2 = b^2 + c^2 - 2bc\cos A

Area: Δ=12absinC=s(sa)(sb)(sc)\Delta = \frac{1}{2}ab\sin C = \sqrt{s(s-a)(s-b)(s-c)} where s=a+b+c2s = \frac{a+b+c}{2}


6. Probability and Statistics

6.1 Measures of Central Tendency

Mean (arithmetic): xˉ=fixifi\bar{x} = \dfrac{\sum f_i x_i}{\sum f_i}

Median: the middle value when data is arranged in order

Mode: the most frequently occurring value

For grouped data, the median and mode use interpolation formulas from the cumulative frequency distribution.

6.2 Variance and Standard Deviation

Variance:

σ2=fi(xixˉ)2fi=fixi2fixˉ2\sigma^2 = \frac{\sum f_i(x_i - \bar{x})^2}{\sum f_i} = \frac{\sum f_i x_i^2}{\sum f_i} - \bar{x}^2

Standard deviation: σ=variance\sigma = \sqrt{\text{variance}}

For combined data from two groups of sizes n1,n2n_1, n_2 with means xˉ1,xˉ2\bar{x}_1, \bar{x}_2 and variances σ12,σ22\sigma_1^2, \sigma_2^2:

xˉcombined=n1xˉ1+n2xˉ2n1+n2\bar{x}_{\text{combined}} = \frac{n_1\bar{x}_1 + n_2\bar{x}_2}{n_1 + n_2}

6.3 Probability

Rules:

  • P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)
  • P(A)=1P(A)P(A') = 1 - P(A)
  • P(AB)=P(A)P(BA)P(A \cap B) = P(A) \cdot P(B|A) (multiplication rule)
  • Independent events: P(AB)=P(A)P(B)P(A \cap B) = P(A) \cdot P(B)

Conditional probability: P(AB)=P(AB)P(B)P(A|B) = \dfrac{P(A \cap B)}{P(B)}

Bayes’ theorem: P(AB)=P(BA)P(A)P(B)P(A|B) = \dfrac{P(B|A) \cdot P(A)}{P(B)}

6.4 Binomial Distribution

A binomial experiment has nn independent trials, each with probability pp of success.

P(X=r)=(nr)pr(1p)nrP(X = r) = \binom{n}{r} p^r (1-p)^{n-r}

Mean: μ=np\mu = np

Variance: σ2=np(1p)\sigma^2 = np(1-p)


7. Key Formulas

TopicFormula
Quadratic rootsx=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
Distance between pointsd=(x2x1)2+(y2y1)2d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}
Sum of APSn=n2[2a+(n1)d]S_n = \frac{n}{2}[2a + (n-1)d]
Sum of GPSn=a(rn1)r1S_n = \frac{a(r^n - 1)}{r - 1}
nnth derivative of eaxe^{ax}aneaxa^n e^{ax}
eaxdx\int e^{ax}\,dx1aeax+C\frac{1}{a}e^{ax} + C
11+x2dx\int \frac{1}{1+x^2}\,dxtan1x+C\tan^{-1}x + C
Binomial coefficient(nr)=n!r!(nr)!\binom{n}{r} = \frac{n!}{r!(n-r)!}
Circle equation(xh)2+(yk)2=r2(x-h)^2 + (y-k)^2 = r^2
Euler’s formulaeiθ=cosθ+isinθe^{i\theta} = \cos\theta + i\sin\theta

8. Exam Tips

  1. Show all working. CBSE awards method marks even if the final answer is wrong. Never skip steps.
  2. Manage time carefully. The paper is 3 hours; spend roughly 1 minute per mark. Attempt all questions.
  3. Memorise the NCERT formulas. Most exam questions are directly based on NCERT textbook derivations and formulas.
  4. Draw clean diagrams. In coordinate geometry and trigonometry, a well-labelled diagram often earns partial marks.
  5. Check the domain of inverse trigonometric functions. Marks are frequently lost by giving values outside the principal range.
  6. Use step-marking strategy. For 6-mark questions, write each step on a new line. Examiners look for specific intermediate results.
  7. Practise previous-year papers. CBSE tends to repeat question patterns. At minimum, solve the last 5 years’ papers.

Common Pitfalls

  1. Forgetting the constant of integration +C+C in indefinite integrals — this is penalised in almost every paper.
  2. Incorrect domain for inverse trig functions. Remember: sin1\sin^{-1} maps to [π/2,π/2][-\pi/2, \pi/2]; cos1\cos^{-1} maps to [0,π][0, \pi].
  3. Confusing range and codomain. The range is the set of actual outputs, not the entire codomain.
  4. Arithmetic errors in determinants. Sign errors in cofactor expansion are extremely common — double-check (1)i+j(-1)^{i+j}.
  5. Applying L’Hôpital’s rule to non-indeterminate forms. Always verify the limit is 0/00/0 or /\infty/\infty first.
  6. Missing absolute values in 1xdx=lnx+C\int \frac{1}{x}\,dx = \ln|x| + C and in area calculations.
  7. Incorrectly applying the second derivative test. When f(x0)=0f''(x_0) = 0, you must use the first derivative test — do not conclude “no max/min”.

Worked Examples

Example 1: Finding the Area Under a Curve

Problem: Find the area enclosed by y = x^2, the x-axis, and the lines x = 0 and x = 2. Solution: Area = integral from 0 to 2 of x^2 dx = [x^3/3] from 0 to 2 = 8/3 - 0 = 8/3 square units. Since y >= 0 on this interval, no absolute value is needed.

Example 2: Solving a System Using Matrices

Problem: Solve: 2x + y = 5, x - y = 1. Solution: In matrix form AX = B, where A = [[2,1],[1,-1]], B = [[5],[1]]. |A| = (2)(-1) - (1)(1) = -3. Since |A| != 0, unique solution exists. A^{-1} = (1/-3)[[-1,-1],[-1,2]] = (1/3)[[1,1],[1,-2]]. X = A^{-1}B = (1/3)[[1,1],[1,-2]][[5],[1]] = (1/3)[[6],[3]] = [[2],[1]]. So x = 2, y = 1.

Example 3: Probability Using Bayes’ Theorem

Problem: A disease affects 1% of a population. A test has 99% sensitivity (true positive rate) and 95% specificity (true negative rate). A person tests positive. What is the probability they actually have the disease? Solution: Let D = disease, T = positive test. P(D) = 0.01, P(D’) = 0.99. P(T|D) = 0.99, P(T|D’) = 1 - 0.95 = 0.05. P(T) = P(T|D)P(D) + P(T|D’)P(D’) = 0.99(0.01) + 0.05(0.99) = 0.0099 + 0.0495 = 0.0594. P(D|T) = P(T|D)P(D)/P(T) = 0.0099/0.0594 = 0.1667 or approximately 16.7%. Despite a positive test, the probability of having the disease is only about 1/6 due to the low prior probability.

Summary

CBSE Mathematics covers sets and functions, algebra (matrices, determinants, complex numbers, quadratics), calculus (limits, derivatives, integration, applications), coordinate geometry (straight lines, conic sections), trigonometry (identities, equations, inverse functions, properties of triangles), and probability and statistics (measures of central tendency, variance, binomial distribution, Bayes’ theorem). The theory paper is 80 marks and the internal assessment is 20 marks. Key exam strategies include showing all working, managing time, memorising NCERT formulas, and practising previous-year papers.