added assignment 1

This commit is contained in:
Louis Heredero 2025-02-21 15:24:53 +01:00
parent 1958945053
commit 8639e2854a
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,13 @@
def sqr(x: Double): Double = x * x
def pow4(x: Double): Double = sqr(x) * sqr(x)
sqr(3)
sqr(7)
sqr(0.5)
sqr(-2)
pow4(2)
pow4(10)
// def bar(x: Int, y: Boolean) = "Hello"
// A String

View File

@ -0,0 +1,18 @@
import scala.annotation.tailrec
def THRESHOLD: Double = 0.0001
def sqr(x: Double): Double = x * x
def isGoodEnough(x: Double): Boolean = if (x < 0) x > THRESHOLD else x < THRESHOLD
def improve(x: Double, approx: Double) = approx - (sqr(approx) - x) / (2 * approx)
@tailrec
def sqrt(x: Double, approx: Double): Double = if (
isGoodEnough(sqr(approx) - x)
) {
approx
} else {
sqrt(x, improve(x, approx))
}
sqrt(612, 10)