diff --git a/src/Assignment1/FirstSteps.sc b/src/Assignment1/FirstSteps.sc new file mode 100644 index 0000000..7ba5a3f --- /dev/null +++ b/src/Assignment1/FirstSteps.sc @@ -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 \ No newline at end of file diff --git a/src/Assignment1/SquareRoot.sc b/src/Assignment1/SquareRoot.sc new file mode 100644 index 0000000..6053d88 --- /dev/null +++ b/src/Assignment1/SquareRoot.sc @@ -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) \ No newline at end of file