time-to-botec/wip/nim/samples.nim

65 lines
1.3 KiB
Nim
Raw Normal View History

2023-05-21 01:13:51 +00:00
import std/math
2023-05-21 02:24:30 +00:00
import std/random
2023-05-21 01:13:51 +00:00
# randomize()
2023-05-21 02:24:30 +00:00
## Basic math functions
proc factorial(n: int): int =
if n == 0 or n < 0:
return 1
else:
return n * factorial(n - 1)
2023-05-21 01:13:51 +00:00
proc sine(x: float): float =
2023-05-21 02:24:30 +00:00
let n = 8
# ^ Taylor will converge really quickly
# notice that the factorial of 17 is
# already pretty gigantic
2023-05-21 01:45:01 +00:00
var acc = 0.0
2023-05-21 01:13:51 +00:00
for i in 0..n:
2023-05-21 02:24:30 +00:00
var k = 2*i + 1
var taylor = pow(-1, i.float) * pow(x, k.float) / factorial(k).float
2023-05-21 01:45:01 +00:00
acc = acc + taylor
2023-05-21 02:24:30 +00:00
return acc
2023-05-21 01:13:51 +00:00
2023-05-21 02:24:30 +00:00
# Helpers for calculating the log function
## Arithmetic-geomtric mean
proc ag(x: float, y: float): float =
let n = 100
var a = (x + y)/2.0
var b = sqrt(x * y)
for i in 0..n:
let temp = a
a = (a+b)/2.0
b = sqrt(b*temp)
return a
## Find m such that x * 2^m > 2^100
proc log_slow(x: float): float =
# See: <https://en.wikipedia.org/wiki/Natural_logarithm#High_precision>
2023-05-21 01:13:51 +00:00
var y = x - 1
2023-05-21 02:24:30 +00:00
let n = 100000000
var acc = 0.0
2023-05-21 01:13:51 +00:00
for i in 1..n:
2023-05-21 02:24:30 +00:00
let taylor = pow(-1.0, float(i+1)) * pow(y, i.float) / i.float
acc = acc + taylor
return acc
proc log(x: float): float =
return 1
## Test these functions
echo factorial(5)
echo sine(1.0)
echo log(1.0)
echo log(2.0)
2023-05-21 01:13:51 +00:00
2023-05-21 02:24:30 +00:00
## Distribution functions
2023-05-21 01:13:51 +00:00
proc normal(): float =
let u1 = rand(1.0)
let u2 = rand(1.0)
let z = 1
# see https://en.wikipedia.org/wiki/Box%E2%80%93Muller_transform#Basic_form