How to Find Thr Square Rout of 0.9 Without Calculator
Calculating the square root of 0.9 without a calculator requires understanding mathematical approximations. This guide explains two reliable methods: the Newton-Raphson approximation and the binomial approximation. Each method provides a step-by-step approach to find the square root of 0.9 with reasonable accuracy.
Introduction
The square root of a number is a value that, when multiplied by itself, gives the original number. For 0.9, we're looking for a number x such that x² = 0.9. Since 0.9 is between 0 and 1, its square root will also be between 0 and 1.
Without a calculator, we can use mathematical approximations to find the square root. Two common methods are the Newton-Raphson approximation and the binomial approximation. Both methods provide a way to estimate the square root using basic arithmetic operations.
Method 1: Using the Newton-Raphson Approximation
The Newton-Raphson method is an iterative approach to find successively better approximations to the roots of a real-valued function. For finding square roots, it works as follows:
Newton-Raphson Formula
xn+1 = (xn + a/xn) / 2
Where a is the number we want to find the square root of (0.9 in this case), and xn is the current approximation.
Step-by-Step Calculation
- Start with an initial guess. Since √0.9 is between 0 and 1, a good starting point is 0.5.
- Apply the Newton-Raphson formula:
- First iteration: x₁ = (0.5 + 0.9/0.5) / 2 = (0.5 + 1.8) / 2 = 1.3 / 2 = 0.65
- Second iteration: x₂ = (0.65 + 0.9/0.65) / 2 ≈ (0.65 + 1.3846) / 2 ≈ 1.0346 / 2 ≈ 0.5173
- Third iteration: x₃ ≈ (0.5173 + 0.9/0.5173) / 2 ≈ (0.5173 + 1.7389) / 2 ≈ 2.2562 / 2 ≈ 1.1281
- Fourth iteration: x₄ ≈ (1.1281 + 0.9/1.1281) / 2 ≈ (1.1281 + 0.7979) / 2 ≈ 1.9260 / 2 ≈ 0.9630
- Fifth iteration: x₅ ≈ (0.9630 + 0.9/0.9630) / 2 ≈ (0.9630 + 0.9346) / 2 ≈ 1.8976 / 2 ≈ 0.9488
- The approximation stabilizes around 0.9488 after several iterations.
Note: The Newton-Raphson method converges quickly to the correct value. For most practical purposes, 3-5 iterations provide sufficient accuracy.
Method 2: Using the Binomial Approximation
The binomial approximation is based on the binomial theorem and is useful for numbers close to 1. The formula for the square root of (1 - a) is:
Binomial Approximation Formula
√(1 - a) ≈ 1 - (a/2) - (a²/8) - (a³/16) - ...
For small values of a, we can truncate the series after the first few terms.
Step-by-Step Calculation
- Express 0.9 as (1 - 0.1).
- Apply the binomial approximation:
- First term: 1
- Second term: - (0.1/2) = -0.05
- Third term: - (0.1²/8) = -0.00125
- Fourth term: - (0.1³/16) = -0.0000625
- Sum the terms: 1 - 0.05 - 0.00125 - 0.0000625 ≈ 0.9486875
Note: The binomial approximation provides a good estimate for numbers close to 1. For more accurate results, additional terms can be included.
Comparison of Methods
Both methods provide reasonable approximations for the square root of 0.9. The Newton-Raphson method is more general and can be applied to any positive number, while the binomial approximation is specifically suited for numbers close to 1.
| Method | Approximation | Accuracy | Complexity |
|---|---|---|---|
| Newton-Raphson | 0.9488 | High (after 5 iterations) | Moderate (requires iteration) |
| Binomial | 0.9486875 | Good (with 4 terms) | Low (direct calculation) |
The actual square root of 0.9 is approximately 0.9486832980505138. Both methods come close to this value, with the Newton-Raphson method providing slightly better accuracy after several iterations.