This lesson utilizes the sub-sutra Vilokanam (By Mere Observation). It encourages recognizing structural patterns in equations that reveal roots without exhaustive computation.
Vilokanam is the discipline of looking before computing. Many complex-looking equations are built from simple components. For example, if x + 1/x = 13/6, we observe that 13/6 = 3/2 + 2/3. Since the structure matches x + 1/x, we can immediately infer x = 3/2 or x = 2/3.
This method is best suited for equations with clear structural patterns, such as reciprocal or additive structures. If no pattern is obvious, expansion into standard polynomial form is the fallback.
Standard fallback: Full algebraic expansion of the terms, finding a common denominator for all fractions, and solving the resulting polynomial equation through standard root-finding techniques.
Example 1: Solve x + 1/x = 17/4
- Step 1: Observe the structure x + 1/x.
- Step 2: Decompose 17/4 into 4 + 1/4.
- Step 3: Compare x + 1/x = 4 + 1/4.
- Step 4: Read off x = 4 or x = 1/4.
- Check: Verify using the sum and product of roots. For x² - (17/4)x + 1 = 0, the sum is 4 + 1/4 = 17/4 and the product is 4 * 1/4 = 1. Both match the coefficients of the quadratic form of the equation.
Example 2: Solve (x+3)/(x+4) + (x+5)/(x+6) = 2
- Step 1: Observe the sum equals 2.
- Step 2: Split 2 into 1 + 1 and move to each term: ((x+3)/(x+4) - 1) + ((x+5)/(x+6) - 1) = 0.
- Step 3: Simplify: -1/(x+4) + -1/(x+6) = 0.
- Step 4: Solve x+4 + x+6 = 0 → 2x = -10 → x = -5.
- Check: Substitute x = -5 into the original equation: (-5+3)/(-5+4) + (-5+5)/(-5+6) = -2/-1 + 0/1 = 2 + 0 = 2. The result matches the right-hand side exactly.