Skip to content

Commit

Permalink
数値: べき乗を求める #4
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshikuniJujo committed Apr 7, 2017
1 parent d44b950 commit 2db4c67
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions 数値/べき乗を求める.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,37 @@
べき乗を求める
==============

整数乗
------

べき乗を求めるには演算子(^)を使います。

```haskell
> 3 ^ 8
6561
```

3を8乗しています。
演算子(^)の型は、つぎのようになります。

```haskell
(^) :: (Num a, Integral b) => a -> b -> a
```

実数乗
------

実数によるべき乗を求めるには演算子(\*\*)を使います

```haskell
> 3 ** 8
6561.0
> 2 ** (1 / 2)
1.4142135623730951
```

演算子(\*\*)の型は、つぎのようになります。

```haskell
(**) :: Floating a => a -> a -> a
```

0 comments on commit 2db4c67

Please sign in to comment.