Cal11 calculator

How to Find Thr Square Rout of 0.9 Without Calculator

Reviewed by Calculator Editorial Team

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

  1. Start with an initial guess. Since √0.9 is between 0 and 1, a good starting point is 0.5.
  2. 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
  3. 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

  1. Express 0.9 as (1 - 0.1).
  2. 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
  3. 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.

Frequently Asked Questions

How accurate are these approximation methods?
The Newton-Raphson method can achieve high accuracy with just a few iterations. The binomial approximation provides good accuracy for numbers close to 1, especially when more terms are included.
Can I use these methods for other numbers?
Yes, the Newton-Raphson method works for any positive number. The binomial approximation is most accurate for numbers close to 1, but can be adapted for other ranges with appropriate transformations.
How many iterations are needed for the Newton-Raphson method?
For most practical purposes, 3-5 iterations provide sufficient accuracy. The method converges quickly, so additional iterations yield diminishing returns.
Is there a simpler method for finding square roots?
For numbers close to 1, the binomial approximation is simpler than the Newton-Raphson method. However, the Newton-Raphson method is more general and works for any positive number.
What is the exact value of √0.9?
The exact value of √0.9 is approximately 0.9486832980505138. The approximation methods described in this guide provide close estimates to this value.