Section formula in 3D
“A pilot adds wind and engine thrust as vectors to know where the plane truly goes.”
a point dividing a segment in a given ratio is found by the section formula componentwise.
Memory trick: weighted average of the endpoints
Advanced Concepts
The JEE-Advanced / NEET-hard concepts that separate top rankers — each a titled nugget with a real-world story, the idea in plain words, and a memory trick. Works even when the internet doesn't.
400 advanced concepts
“A pilot adds wind and engine thrust as vectors to know where the plane truly goes.”
a point dividing a segment in a given ratio is found by the section formula componentwise.
Memory trick: weighted average of the endpoints
“Computer graphics rotate and scale every image on screen using matrices.”
a determinant is zero if two rows are equal or proportional.
Memory trick: equal rows kill the determinant
“Computer graphics rotate and scale every image on screen using matrices.”
the inverse is the adjoint divided by the determinant, valid only when the determinant is non-zero.
Memory trick: inverse = adjoint / determinant
“Computer graphics rotate and scale every image on screen using matrices.”
comparing coefficient and augmented ranks tells if a system has none, one or infinitely many solutions.
Memory trick: rank test decides solvability
“Computer graphics rotate and scale every image on screen using matrices.”
every square matrix satisfies its own characteristic equation.
Memory trick: a matrix solves its own equation
“Computer graphics rotate and scale every image on screen using matrices.”
any square matrix splits into a symmetric plus a skew-symmetric part.
Memory trick: any matrix = symmetric + skew part
“Spam filters run on Bayes' theorem.”
Bayes updates a hypothesis's probability given new evidence.
Memory trick: prior times likelihood, normalised
“Spam filters, insurance and weather forecasts all run on probability and Bayes' rule.”
a binomial distribution has mean np and variance np(1-p).
Memory trick: mean np, variance npq
“Spam filters, insurance and weather forecasts all run on probability and Bayes' rule.”
exclusive events cannot co-occur; independent events do not affect each other, and these are different ideas.
Memory trick: exclusive is not independent
“Spam filters, insurance and weather forecasts all run on probability and Bayes' rule.”
the expected value is the probability-weighted average of outcomes.
Memory trick: E(X) = sum of value times probability
“Spam filters, insurance and weather forecasts all run on probability and Bayes' rule.”
variance is the mean squared deviation; its square root is the standard deviation.
Memory trick: SD = sqrt(variance)
“Compound interest is a geometric progression quietly growing your money — or your loan.”
induction proves a statement for all naturals by a base case plus an inductive step.
Memory trick: base case + inductive step
“Compound interest is a geometric progression quietly growing your money — or your loan.”
the arithmetic mean of positive numbers is at least their geometric mean.
Memory trick: AM >= GM, equal only when all equal
“A pilot adds wind and engine thrust as vectors to know where the plane truly goes.”
the square of a dot product never exceeds the product of the squared magnitudes.
Memory trick: (a.b)^2 <= |a|^2 |b|^2
“A limit is how mathematics talks about getting infinitely close without ever arriving.”
any logarithm converts to another base by dividing by the log of the new base.
Memory trick: log_b x = ln x / ln b
“A limit is how mathematics talks about getting infinitely close without ever arriving.”
the modulus function is V-shaped, continuous everywhere but not differentiable at zero.
Memory trick: |x| has a corner at 0
“A limit is how mathematics talks about getting infinitely close without ever arriving.”
the floor function is a step function, discontinuous at every integer.
Memory trick: floor jumps at each integer
“The path of every thrown ball and fountain jet is a quadratic curve.”
The discriminant b^2 - 4ac tells whether roots are real and distinct, equal or complex, before you solve.
Memory trick: D>0 distinct, D=0 equal, D<0 complex.
“The path of every thrown ball and fountain jet is a quadratic curve.”
A frequent error is assuming a quadratic always has real roots. In reality, the discriminant b^2 - 4ac tells whether roots are real and distinct, equal or complex, before you solve.
Memory trick: D>0 distinct, D=0 equal, D<0 complex.
“The path of every thrown ball and fountain jet is a quadratic curve.”
The sum of roots is -b/a and the product is c/a, letting you use roots without finding them.
Memory trick: sum = -b/a, product = c/a.
“The path of every thrown ball and fountain jet is a quadratic curve.”
A frequent error is forgetting the sign on -b/a. In reality, the sum of roots is -b/a and the product is c/a, letting you use roots without finding them.
Memory trick: sum = -b/a, product = c/a.
“The path of every thrown ball and fountain jet is a quadratic curve.”
A real-coefficient polynomial has complex roots in conjugate pairs.
Memory trick: complex roots come in conjugate pairs.
“The path of every thrown ball and fountain jet is a quadratic curve.”
A frequent error is expecting a lone complex root with real coefficients. In reality, a real-coefficient polynomial has complex roots in conjugate pairs.
Memory trick: complex roots come in conjugate pairs.
“The path of every thrown ball and fountain jet is a quadratic curve.”
Two quadratics with a common root satisfy a cross-multiplication condition.
Memory trick: use the condition for a common root, not naive equating.