module Math

Extended Modules

Defined in:

math/euler.cr
math/quadratic_equation.cr
math/sqrt_digits10.cr

Instance Method Summary

Instance Method Detail

def euler(x : Int) #

[View source]
def euler_table(x : Int) #

[View source]
def quadratic_equation(a : Int64, b : Int64, c : Int64) : Array(Float64)? #

Solve ax^2 + bx + c = 0.


[View source]
def sqrt_digits10(x : Int, scale : Int) : Tuple(Array(Int32), Array(Int32)) #

[View source]