Cal11 calculator

Square Root of 0.9 Without Calculator

Reviewed by Calculator Editorial Team

Calculating the square root of 0.9 without a calculator can be done using several mathematical methods. This guide explains the most common approaches, provides a step-by-step example, and includes a calculator for quick verification.

How to Calculate the Square Root of 0.9

The square root of a number is a value that, when multiplied by itself, gives the original number. For 0.9, we need to find a number x such that x × x = 0.9.

There are several methods to find the square root without a calculator:

  1. Using the Babylonian method (also known as Heron's method)
  2. Using the binomial approximation
  3. Using logarithms

Each method has its advantages and is suitable for different levels of mathematical knowledge.

Different Methods to Find Square Root

1. Babylonian Method

This is an iterative method that starts with an initial guess and improves it with each step. Here's how it works:

  1. Start with an initial guess (let's say 0.9 for simplicity)
  2. Improve the guess using the formula: new_guess = (guess + 0.9/guess) / 2
  3. Repeat until the guess is accurate enough

Babylonian Method Formula

xn+1 = (xn + a/xn) / 2

Where a = 0.9 and x0 is the initial guess

2. Binomial Approximation

This method uses the binomial expansion to approximate square roots of numbers close to 1.

Binomial Approximation Formula

√(1 + a) ≈ 1 + a/2 - a²/8 + a³/16 - ...

For a = -0.1 (since 0.9 = 1 - 0.1):

√0.9 ≈ 1 - 0.1/2 - (-0.1)²/8 ≈ 1 - 0.05 - 0.0125 ≈ 0.8375

3. Logarithmic Method

This method uses logarithms to transform the square root into a multiplication problem.

Logarithmic Method Formula

√a = 10^(log10(a)/2)

For a = 0.9:

√0.9 ≈ 10^(log10(0.9)/2) ≈ 10^(-0.045757/2) ≈ 10^(-0.0228785) ≈ 0.875

Worked Example

Let's calculate √0.9 using the Babylonian method with an initial guess of 0.9.

Step 1: First Iteration

Initial guess: x₀ = 0.9

New guess: x₁ = (0.9 + 0.9/0.9)/2 = (0.9 + 1)/2 = 1.9/2 = 0.95

Step 2: Second Iteration

Previous guess: x₁ = 0.95

New guess: x₂ = (0.95 + 0.9/0.95)/2 ≈ (0.95 + 0.947368)/2 ≈ 1.897368/2 ≈ 0.948684

Step 3: Third Iteration

Previous guess: x₂ ≈ 0.948684

New guess: x₃ ≈ (0.948684 + 0.9/0.948684)/2 ≈ (0.948684 + 0.947368)/2 ≈ 1.896052/2 ≈ 0.948026

After three iterations, we get an approximation of √0.9 ≈ 0.948026, which is accurate to four decimal places.

Frequently Asked Questions

How accurate is the Babylonian method?
The Babylonian method converges quickly to a very accurate result, typically within a few iterations.
Can I use the binomial approximation for numbers other than 0.9?
Yes, the binomial approximation works well for numbers close to 1. For numbers farther from 1, other methods may be more appropriate.
Is there a simpler method for calculating square roots?
The Babylonian method is one of the simplest iterative methods that doesn't require advanced mathematical knowledge.
How many iterations are needed for a precise result?
Usually, 3-5 iterations provide a result accurate to several decimal places.
Can I use logarithms to find square roots of negative numbers?
No, logarithms are not defined for negative numbers, so this method only works for positive numbers.