Snowflower Calc ユーザーガイド

Snowflower Calc は多くの関数をサポートしており仮想キーパッドに配置されていない関数は直接キーボードで入力することで使用できます。

オペレータ

表1. オペレータ

+

加算

-

減算

*

乗算

/

除算

%

剰余

^

冪乗, x y \displaystyle x^y

!

階乗, x ! \displaystyle x!

定数

表2. 定数

pi

定数 π (3.14159265358979323846264338328…​)

e

定数 e (2.718281828459045235360287471353…​)

euler

定数 euler (0.577215664901532860606512090082…​)

変数

表3. 変数

ans

前の式の計算結果

関数

表4. 算術関数

sqrt(x)

Square Root of Number x, x \displaystyle \sqrt{x}

cbrt(x)

Cube Root of Number x, x 3 \displaystyle \sqrt[3]{x}

exp(x)

Exponential value of x

ln(x)

Natural Logarithm (base e)

log(x,y)

Logarithm of Number x to Base y

mod(x,y)

x mod y

表5. 整数関数

ceil(x)

Ceiling, Round towards plus infinity

floor(x)

Floor, Round towards minus infinity

round(x)

Round towards the nearest integer

sign(x)

The sign of x. Returns 1 if x>0, 0 if x=0 and -1 if x<0

表6. 三角関数

sin(x)

x の正弦

cos(x)

x の余弦

tan(x)

x の正接

asin(x)

x の逆正弦 (sin-1)

acos(x)

x の逆余弦 (cos-1)

atan(x)

x の逆正接 (tan-1)

sinh(x)

x の双曲線正弦

cosh(x)

x の双曲線余弦

tanh(x)

x の双曲線正接

asinh(x)

x の逆双曲線正弦

acosh(x)

x の逆双曲線余弦

atanh(x)

x の逆双曲線正接

csc(x)

x の余割, Defined as: c s c ( x ) = 1 sin x \displaystyle csc(x) = \frac{1}{\sin{x}}

sec(x)

x の正割, Defined as: s e c ( x ) = 1 cos x \displaystyle sec(x) = \frac{1}{\cos{x}}

cot(x)

x の余接, Defined as: c o t ( x ) = 1 tan x \displaystyle cot(x) = \frac{1}{\tan{x}}

sinpi(x)

Defined as: s i n p i ( x ) = s i n ( x π ) \displaystyle sinpi(x) = sin(x \pi)

cospi(x)

Defined as: c o s p i ( x ) = c o s ( x π ) \displaystyle cospi(x) = cos(x \pi)

tanpi(x)

Defined as: t a n p i ( x ) = t a n ( x π ) \displaystyle tanpi(x) = tan(x \pi)

表7. 確率関数

npr(n,r)

n個の中からr個を選んで順序をつけてできる組み合わせ, Defined as: n P r = n ! ( n r ) ! \displaystyle _n \mathrm{P} _r = \frac{n!}{(n−r)!}

ncr(n,r)

n個の中からr個を選ぶ組み合わせの総数, Defined as: n C r = n ! r ! ( n r ) ! \displaystyle _n \mathrm{C} _r = \frac{n!}{r!(n−r)!}

表8. その他の関数

min(x,y)

最小

max(x,y)

最大

gamma(x)

the gamma function is an extension of the factorial function.

lcm(x, y)

最小公倍数

gcd(x, y)

最大公約数

関連文書