๐Ÿ“ Short Notes ยท All 13 Chapters

Ishu's Smart Notes ๐Ÿ“š

Crisp, concise, and board-exam ready notes for all 13 NCERT chapters โ€” crafted with love for Ishu (My Wife). Read once, score forever! ๐ŸŽฏ

01

Relations & Functions

6 Marks
Types of Relations
  • Reflexive: $(a,a) \in R$ for all $a$
  • Symmetric: $(a,b) \in R \Rightarrow (b,a) \in R$
  • Transitive: $(a,b),(b,c) \in R \Rightarrow (a,c) \in R$
  • Equivalence = Reflexive + Symmetric + Transitive
  • Empty relation: NOT reflexive. Universal: IS equivalence.
Types of Functions
  • One-One: $f(a)=f(b) \Rightarrow a=b$
  • Onto: Range = Codomain
  • Bijective = One-One + Onto (inverse exists!)
  • Horizontal line test โ†’ One-One
  • Onto check: find range and match with codomain
Composition & Inverse
โญ Board Fav
  • $(fog)(x) = f(g(x))$ โ€” apply $g$ first!
  • $fog \neq gof$ in general
  • Inverse function exists only if bijective
  • $(f^{-1} \circ f)(x) = x$
Binary Operation: $*: A \times A \to A$
02

Inverse Trigonometric Functions

5 Marks
Principal Value Branches
  • $\sin^{-1}x$: Range $[-\pi/2, \pi/2]$
  • $\cos^{-1}x$: Range $[0, \pi]$
  • $\tan^{-1}x$: Range $(-\pi/2, \pi/2)$
  • Domain of all: $[-1, 1]$ (for sin & cos)
$\sin^{-1}x + \cos^{-1}x = \dfrac{\pi}{2}$
Key Identities
Must Memorize
$\tan^{-1}x + \tan^{-1}y = \tan^{-1}\!\left(\dfrac{x+y}{1-xy}\right)$
$2\tan^{-1}x = \sin^{-1}\!\left(\dfrac{2x}{1+x^2}\right)$
  • $\sin^{-1}(-x) = -\sin^{-1}x$
  • $\cos^{-1}(-x) = \pi - \cos^{-1}x$
Board Trick
  • $\sin(\sin^{-1}x) = x$ always
  • $\sin^{-1}(\sin x) = x$ only if $x \in [-\pi/2, \pi/2]$
  • For $\tan^{-1}x + \tan^{-1}y$: if $xy > 1$, add $\pi$ to the formula
  • $\tan^{-1}1 + \tan^{-1}2 + \tan^{-1}3 = \pi$ โ€” classic question!
03

Matrices

5 Marks
Matrix Types
  • Square matrix: rows = columns
  • Diagonal: non-diagonal elements = 0
  • Identity (I): diagonal = 1, rest = 0
  • Symmetric: $A = A^T$
  • Skew-Symmetric: $A = -A^T$ (diagonal = 0)
Operations
  • $AB \neq BA$ generally
  • $(AB)^T = B^T A^T$
  • $(A^T)^T = A$
  • Any matrix = Symmetric + Skew-Symmetric
$A = \dfrac{A+A^T}{2} + \dfrac{A-A^T}{2}$
Inverse Formula
โญ Board Fav
$A^{-1} = \dfrac{1}{|A|} \cdot \text{adj}(A)$
  • For 2ร—2: swap $a,d$; negate $b,c$ โ€” divide by $|A|$
  • $AA^{-1} = I$
  • Inverse exists iff $|A| \neq 0$ (non-singular)
04

Determinants

6 Marks
Key Properties
  • $|AB| = |A| \cdot |B|$
  • $|A^T| = |A|$
  • $|kA| = k^n |A|$ for $n \times n$ matrix
  • Two identical rows/cols โ†’ $|A| = 0$
  • Interchange rows/cols โ†’ det changes sign
Area & Collinearity
Most Asked!
$\text{Area} = \dfrac{1}{2}\begin{vmatrix} x_1 & y_1 & 1 \\ x_2 & y_2 & 1 \\ x_3 & y_3 & 1 \end{vmatrix}$

โš ๏ธ If Area = 0 โ†’ points are Collinear!

Cramer's Rule / Adjoint
  • adj(A) = transpose of cofactor matrix
  • $A \cdot \text{adj}(A) = |A| \cdot I$
  • System $AX=B$: if $|A|\neq 0$, unique solution
  • Consistent system: $|A| = 0$ but $(\text{adj}A)B = 0$
  • Inconsistent: $|A| = 0$ and $(\text{adj}A)B \neq 0$
05

Continuity & Differentiability

8 Marks
Continuity
  • $f$ is continuous at $c$ if:
$\lim_{x \to c} f(x) = f(c)$
  • LHL = RHL = $f(c)$ must all be equal
  • Differentiable โŸน Continuous (converse FALSE)
  • $|x|$ is continuous but NOT differentiable at $x=0$
Key Derivatives
Must Know!
  • $\frac{d}{dx}(\sin^{-1}x) = \dfrac{1}{\sqrt{1-x^2}}$
  • $\frac{d}{dx}(\cos^{-1}x) = \dfrac{-1}{\sqrt{1-x^2}}$
  • $\frac{d}{dx}(\tan^{-1}x) = \dfrac{1}{1+x^2}$
  • $\frac{d}{dx}(e^x) = e^x$, $\ \frac{d}{dx}(a^x) = a^x \ln a$
  • $\frac{d}{dx}(\ln x) = \dfrac{1}{x}$
Chain Rule & Implicit
  • Chain rule: $\frac{dy}{dx} = \frac{dy}{du} \cdot \frac{du}{dx}$
  • Implicit: differentiate both sides w.r.t $x$, collect $\frac{dy}{dx}$
  • Parametric: $\frac{dy}{dx} = \frac{dy/dt}{dx/dt}$
  • Log differentiation: use when base and power both are functions of $x$
Rolle's & MVT
  • Rolle's: $f$ cont on $[a,b]$, diff on $(a,b)$, $f(a)=f(b)$ โ†’ $\exists c$ s.t. $f'(c)=0$
  • LMVT: $f'(c) = \dfrac{f(b)-f(a)}{b-a}$ for some $c \in (a,b)$
06

Application of Derivatives

7 Marks
Maxima & Minima
โญ Board Fav
  • Put $f'(x) = 0$ โ†’ find critical points
  • First Derivative Test: sign change of $f'$
  • Second Derivative Test:
  • $f''(c) < 0$ โ†’ Local Maxima
  • $f''(c) > 0$ โ†’ Local Minima
  • Absolute max/min: always check endpoints!
Increasing / Decreasing
  • $f'(x) > 0$ on $(a,b)$ โ†’ Strictly Increasing
  • $f'(x) < 0$ on $(a,b)$ โ†’ Strictly Decreasing
  • Find intervals by solving $f'(x) = 0$ then checking signs
Tangent & Normal
  • Slope of tangent at $(x_1,y_1)$: $m = f'(x_1)$
  • Slope of normal: $-\frac{1}{m}$
  • Tangent: $y - y_1 = m(x - x_1)$
  • If $f'=0$ โ†’ tangent is horizontal
  • Rate of change: $\frac{dy}{dt} = \frac{dy}{dx} \cdot \frac{dx}{dt}$
07

Integrals

8 Marks
Standard Integrals
  • $\int x^n dx = \dfrac{x^{n+1}}{n+1} + C$ (n โ‰  -1)
  • $\int e^x dx = e^x + C$
  • $\int \frac{1}{x} dx = \ln|x| + C$
  • $\int \sin x\, dx = -\cos x + C$
  • $\int \cos x\, dx = \sin x + C$
  • $\int \sec^2 x\, dx = \tan x + C$
Special Forms
Board Guarantee
$\int \dfrac{dx}{x^2+a^2} = \dfrac{1}{a}\tan^{-1}\!\left(\dfrac{x}{a}\right) + C$
$\int \dfrac{dx}{\sqrt{a^2-x^2}} = \sin^{-1}\!\left(\dfrac{x}{a}\right) + C$
$\int e^x[f(x)+f'(x)]dx = e^x f(x) + C$
Properties (Definite)
Must Know
  • $\int_a^b f(x)dx = \int_a^b f(a+b-x)dx$
  • $\int_0^a f(x)dx = \int_0^a f(a-x)dx$
  • $\int_{-a}^{a} f(x)dx = 2\int_0^a f(x)dx$ if even
  • $\int_{-a}^{a} f(x)dx = 0$ if odd function
Integration by Parts
$\int u \cdot v\, dx = u\int v\,dx - \int\!\left(\frac{du}{dx}\int v\,dx\right) dx$

ILATE Rule โ€” choose $u$ as: Inverse Trigo โ†’ Log โ†’ Algebraic โ†’ Trig โ†’ Exponential

08

Application of Integrals

5 Marks
Area Formula
$A = \int_a^b |f(x)|\ dx$
  • Area between curves: $\int_a^b [f(x) - g(x)]\, dx$ where $f \geq g$
  • Always take absolute value if area is asked
Standard Curves
โญ Board Fav
  • Circle $x^2+y^2=a^2$: Area = $\pi a^2$
  • Area of half circle via integration: $\int_0^a \sqrt{a^2-x^2}\, dx = \dfrac{\pi a^2}{4}$
  • Parabola $y^2=4ax$: Use symmetry, integrate wrt $y$
  • Ellipse $\frac{x^2}{a^2}+\frac{y^2}{b^2}=1$: Area $= \pi ab$
09

Differential Equations

6 Marks
Key Definitions
  • Order: highest derivative present
  • Degree: power of highest order derivative (after clearing radicals)
  • General solution: has arbitrary constants
  • Particular solution: constants fixed using initial conditions
Variable Separable
Most Common
  • Form: $\frac{dy}{dx} = f(x) \cdot g(y)$
  • Separate: $\frac{dy}{g(y)} = f(x)\, dx$
  • Integrate both sides separately
Linear DE โ€” I.F. Method
โญ Board Fav
  • Form: $\frac{dy}{dx} + Py = Q$ (P, Q in terms of x)
$\text{I.F.} = e^{\int P\, dx}$
  • Solution: $y \cdot (\text{I.F.}) = \int Q \cdot (\text{I.F.})\, dx + C$
10

Vector Algebra

6 Marks
Dot Product
$\vec{a} \cdot \vec{b} = |\vec{a}||\vec{b}|\cos\theta$
  • Component form: $a_1b_1 + a_2b_2 + a_3b_3$
  • Perpendicular โ†” $\vec{a} \cdot \vec{b} = 0$
  • Projection of $\vec{a}$ on $\vec{b}$: $\dfrac{\vec{a}\cdot\vec{b}}{|\vec{b}|}$
Cross Product
$|\vec{a} \times \vec{b}| = |\vec{a}||\vec{b}|\sin\theta$
  • Result is a vector โŠฅ to both $\vec{a}$ and $\vec{b}$
  • Parallel โ†” $\vec{a} \times \vec{b} = \vec{0}$
  • Area of parallelogram = $|\vec{a} \times \vec{b}|$
  • Area of triangle = $\frac{1}{2}|\vec{a} \times \vec{b}|$
Scalar Triple Product
  • $[\vec{a}\ \vec{b}\ \vec{c}] = \vec{a} \cdot (\vec{b} \times \vec{c})$
  • Volume of parallelepiped = $|[\vec{a}\ \vec{b}\ \vec{c}]|$
  • Coplanar โ†” $[\vec{a}\ \vec{b}\ \vec{c}] = 0$
11

3D Geometry

6 Marks
Lines in 3D
Most Asked
  • Vector form: $\vec{r} = \vec{a} + \lambda\vec{b}$
  • Cartesian: $\dfrac{x-x_1}{l} = \dfrac{y-y_1}{m} = \dfrac{z-z_1}{n}$
  • Direction cosines: $l^2+m^2+n^2=1$
  • Angle between lines: $\cos\theta = |\dfrac{\vec{b_1}\cdot\vec{b_2}}{|\vec{b_1}||\vec{b_2}|}|$
Planes in 3D
  • Equation: $ax+by+cz+d=0$
  • Normal vector: $(a, b, c)$
Distance $= \dfrac{|ax_1+by_1+cz_1+d|}{\sqrt{a^2+b^2+c^2}}$
  • Angle between planes: $\cos\theta = \dfrac{|\vec{n_1}\cdot\vec{n_2}|}{|\vec{n_1}||\vec{n_2}|}$
Skew Lines & Distance
  • Skew lines: non-parallel, non-intersecting
  • Shortest distance between skew lines:
$d = \dfrac{|(\vec{a_2}-\vec{a_1})\cdot(\vec{b_1}\times\vec{b_2})|}{|\vec{b_1}\times\vec{b_2}|}$

If $\vec{b_1}\times\vec{b_2} = \vec{0}$, lines are parallel.

12

Linear Programming

5 Marks
Key Concepts
  • Objective Function: $Z = ax + by$ to maximize/minimize
  • Constraints: inequalities defining the region
  • Feasible Region: set of all feasible solutions (convex polygon)
  • Corner Point Theorem: optimal value is always at a vertex!
Steps to Solve LPP
Guaranteed 5 Marks
  • 1. Write objective function $Z = ax + by$
  • 2. Convert inequalities to equations, plot lines
  • 3. Find feasible region (shade it)
  • 4. Find all corner points (vertices)
  • 5. Evaluate $Z$ at each corner โ†’ pick max/min
13

Probability

8 Marks
Conditional Probability
$P(A|B) = \dfrac{P(A \cap B)}{P(B)}$, $P(B) \neq 0$
  • $P(A \cap B) = P(A|B) \cdot P(B)$
  • $P(A \cap B) = P(B|A) \cdot P(A)$
  • Independent: $P(A \cap B) = P(A) \cdot P(B)$
Bayes' Theorem
โญ Board Fav (5 Marks)
$P(E_i|A) = \dfrac{P(E_i) \cdot P(A|E_i)}{\displaystyle\sum_{j} P(E_j) \cdot P(A|E_j)}$

Always verify: $\sum P(E_i) = 1$

Binomial Distribution
  • $n$ = no. of trials, $p$ = success prob, $q = 1-p$
$P(X=r) = \binom{n}{r} p^r q^{n-r}$
  • Mean $= np$, Variance $= npq$
  • Binomial if: fixed trials, 2 outcomes, independent
Random Variable
  • Probability distribution table: $\sum P_i = 1$
  • Mean (E(X)): $\sum x_i P_i$
  • Variance: $E(X^2) - [E(X)]^2$
  • $E(X^2) = \sum x_i^2 P_i$