Go implementation of square root function using Newton’s method

Kasun Siyambalapitiya
1 min readAug 4, 2017

--

Image source : https://pixabay.com/en/square-root-x-roots-symbol-27349/

When you begin to learn the trending Go lang you may have encounter with the exercise to implement the square root function using Newton’s method. Here is how I implemented it.

package main

import (
"fmt"
"math"
)

func Sqrt(x float64) float64 {
var z float64=1
for i:=1;i<=10;i++{
z =(z-(math.Pow(z,2)-x)/(2*z))
}
return z
}

func main() {
fmt.Println(Sqrt(64))
}

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Kasun Siyambalapitiya
Kasun Siyambalapitiya

No responses yet

Write a response