Vieta's formulas for + bx + c = 0 with roots alpha, beta: alpha + beta = -b/a (sum) and alpha * beta = (product). These extend to higher-degree polynomials: for a cubic with roots alpha, beta, gamma, the elementary symmetric polynomials give sum, sum of pairwise products, and triple product.
The power of Vieta's formulas lies in computing symmetric expressions without finding individual roots. Key identities: + = (alpha+beta)^2 - 2alphabeta. + = (alpha+beta)^3 - 3alphabeta*(alpha+beta). |alpha - beta| = sqrt((alpha+beta)^2 - 4alphabeta) = sqrt(D)/|a|. 1/alpha + 1/beta = .
Newton's identity provides a recurrence for power sums = + : = (alpha+beta)S_(k-1) - alphabeta*S_(k-2) with = 2, = alpha+beta. This efficiently computes + for large n without finding the roots.
Transformation of equations: to find the equation whose roots are f(alpha), f(beta), use the substitution method. For roots kalpha, kbeta: replace x by x/k. For roots alpha + h, beta + h: replace x by x - h. For roots 1/alpha, 1/beta: replace x by 1/x and clear fractions. For roots , : sum = (alpha+beta)^2 - 2alphabeta, product = (alpha*beta)^2.
JEE trap: Students often compute + by finding individual roots and squaring. This is both slower and more error-prone than using (alpha+beta)^2 - 2alphabeta directly from coefficients.