Strategy 1 - Discriminant-first approach: For any problem involving root nature, immediately compute D. Most JEE problems can be solved by analyzing D as a function of the parameter, then solving the resulting inequality.
Strategy 2 - Vieta's over root-finding: When the problem asks for a symmetric expression of roots, use Vieta's formulas directly. Finding individual roots wastes time and introduces computation errors. The Newton's recurrence = (sum)*S_(n-1) - (product)*S_(n-2) handles power sums of any order.
Strategy 3 - Graphical reasoning for location problems: Sketch the parabola and mark the critical points. The visual picture immediately suggests which algebraic conditions to impose. This prevents missing conditions (a common source of errors).
Strategy 4 - Substitution recognition: When you see , x + 1/x, sqrt(x), , sin(x), or log(x) in an equation, check if a substitution converts it to a quadratic. This is the key step that many students miss.
Strategy 5 - Trap awareness: (a) Forgetting that squaring introduces extraneous roots. (b) Ignoring the case a = 0 when a is a parameter (the equation becomes linear). (c) Assuming D >= 0 without checking (for location of roots problems). (d) Confusing "at least one root in interval" with "exactly one root in interval."
Strategy 6 - Numerical answer type: When JEE asks for a specific numerical value (not MCQ), + problems are efficiently handled by Newton's recurrence. Common root problems: subtract equations, find common root, substitute back. Max/min of quadratic: vertex formula -.