2019-11-08 03:19:27 +04:00
|
|
|
---
|
|
|
|
id: math-numbers-tez
|
|
|
|
title: Math, Numbers & Tez
|
|
|
|
---
|
|
|
|
|
|
|
|
LIGO offers three built-in numerical types: `int`, `nat` and `tez`.
|
|
|
|
|
|
|
|
## Addition
|
|
|
|
|
2020-02-05 19:28:40 +04:00
|
|
|
Addition in LIGO is accomplished by means of the `+` infix
|
|
|
|
operator. Some type constraints apply, for example you ca not add a
|
|
|
|
value of type `tez` to a value of type `nat`.
|
2019-11-08 03:19:27 +04:00
|
|
|
|
2020-02-05 19:28:40 +04:00
|
|
|
In the following example you can find a series of arithmetic
|
|
|
|
operations, including various numerical types. However, some bits
|
|
|
|
remain in comments because they would otherwise not compile because,
|
|
|
|
for example, adding a value of type `int` to a value of type `tez` is
|
|
|
|
invalid. Note that adding an integer to a natural number produces an
|
|
|
|
integer.
|
2019-11-08 03:19:27 +04:00
|
|
|
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
|
|
<!--Pascaligo-->
|
|
|
|
|
2019-12-26 16:29:22 +04:00
|
|
|
```pascaligo group=a
|
2020-02-05 19:28:40 +04:00
|
|
|
// int + int yields int
|
|
|
|
const a : int = 5 + 10
|
|
|
|
|
|
|
|
// nat + int yields int
|
|
|
|
const b : int = 5n + 10
|
|
|
|
|
|
|
|
// tez + tez yields tez
|
|
|
|
const c : tez = 5mutez + 10mutez
|
|
|
|
|
|
|
|
//tez + int or tez + nat is invalid
|
|
|
|
// const d : tez = 5mutez + 10n
|
|
|
|
|
|
|
|
// two nats yield a nat
|
|
|
|
const e : nat = 5n + 10n
|
|
|
|
|
|
|
|
// nat + int yields an int: invalid
|
|
|
|
// const f : nat = 5n + 10;
|
|
|
|
|
|
|
|
const g : int = 1_000_000
|
|
|
|
```
|
|
|
|
|
|
|
|
> Pro tip: you can use underscores for readability when defining large
|
|
|
|
> numbers:
|
2019-11-08 03:19:27 +04:00
|
|
|
>
|
|
|
|
>```pascaligo
|
2020-02-05 19:28:40 +04:00
|
|
|
> const sum : tez = 100_000mutez
|
2019-11-08 03:19:27 +04:00
|
|
|
>```
|
|
|
|
|
2019-12-12 17:35:07 +04:00
|
|
|
<!--CameLIGO-->
|
2019-11-08 03:19:27 +04:00
|
|
|
|
2019-12-26 16:29:22 +04:00
|
|
|
```cameligo group=a
|
2020-02-05 19:28:40 +04:00
|
|
|
// int + int yields int
|
|
|
|
let a : int = 5 + 10
|
|
|
|
|
|
|
|
// nat + int yields int
|
|
|
|
let b : int = 5n + 10
|
|
|
|
|
|
|
|
// tez + tez yields tez
|
|
|
|
let c : tez = 5mutez + 10mutez
|
|
|
|
|
|
|
|
// tez + int or tez + nat is invalid
|
|
|
|
// const d : tez = 5mutez + 10n
|
|
|
|
|
|
|
|
// two nats yield a nat
|
|
|
|
let e : nat = 5n + 10n
|
|
|
|
|
|
|
|
// nat + int yields an int: invalid
|
|
|
|
// const f : nat = 5n + 10
|
|
|
|
|
|
|
|
let g : int = 1_000_000
|
|
|
|
```
|
|
|
|
|
|
|
|
> Pro tip: you can use underscores for readability when defining large
|
|
|
|
> numbers:
|
2019-11-08 03:19:27 +04:00
|
|
|
>
|
|
|
|
>```cameligo
|
2020-02-05 19:28:40 +04:00
|
|
|
>let sum : tez = 100_000mutez
|
2019-11-08 03:19:27 +04:00
|
|
|
>```
|
|
|
|
|
2019-12-11 13:34:08 +04:00
|
|
|
<!--ReasonLIGO-->
|
2019-12-10 17:47:31 +04:00
|
|
|
|
2019-12-26 16:29:22 +04:00
|
|
|
```reasonligo group=a
|
2020-02-05 19:28:40 +04:00
|
|
|
// int + int yields int
|
|
|
|
let a : int = 5 + 10;
|
|
|
|
|
|
|
|
// nat + int yields int
|
|
|
|
let b : int = 5n + 10;
|
|
|
|
|
|
|
|
// tez + tez yields tez
|
|
|
|
let c : tez = 5mutez + 10mutez;
|
|
|
|
|
|
|
|
// tez + int or tez + nat is invalid:
|
|
|
|
// let d : tez = 5mutez + 10n;
|
|
|
|
|
|
|
|
// two nats yield a nat
|
|
|
|
let e : nat = 5n + 10n;
|
|
|
|
|
|
|
|
// nat + int yields an int: invalid
|
|
|
|
//let f : nat = 5n + 10;
|
|
|
|
|
|
|
|
let g : int = 1_000_000;
|
|
|
|
```
|
|
|
|
|
|
|
|
> Pro tip: you can use underscores for readability when defining large
|
|
|
|
> numbers:
|
2019-12-10 17:47:31 +04:00
|
|
|
>```reasonligo
|
2020-02-05 19:28:40 +04:00
|
|
|
>let sum : tex = 100_000mutez;
|
2019-12-10 17:47:31 +04:00
|
|
|
>```
|
|
|
|
|
2019-11-08 03:19:27 +04:00
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
|
|
|
|
## Subtraction
|
|
|
|
|
2020-02-05 19:28:40 +04:00
|
|
|
Subtraction looks like as follows.
|
2019-11-08 03:19:27 +04:00
|
|
|
|
|
|
|
> ⚠️ Even when subtracting two `nats`, the result is an `int`
|
|
|
|
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
|
|
<!--Pascaligo-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```pascaligo group=b
|
2020-02-05 19:28:40 +04:00
|
|
|
const a : int = 5 - 10
|
|
|
|
|
|
|
|
// Subtraction of two nats yields an int
|
|
|
|
const b : int = 5n - 2n
|
|
|
|
|
|
|
|
// Therefore the following is invalid
|
|
|
|
// const c : nat = 5n - 2n
|
|
|
|
|
|
|
|
const d : tez = 5mutez - 1mutez
|
2019-11-08 03:19:27 +04:00
|
|
|
```
|
|
|
|
|
2019-12-12 17:35:07 +04:00
|
|
|
<!--CameLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```cameligo group=b
|
2020-02-05 19:28:40 +04:00
|
|
|
let a : int = 5 - 10
|
|
|
|
|
|
|
|
// Subtraction of two nats yields an int
|
|
|
|
let b : int = 5n - 2n
|
|
|
|
|
|
|
|
// Therefore the following is invalid
|
|
|
|
// const c : nat = 5n - 2n
|
|
|
|
|
|
|
|
let d : tez = 5mutez - 1mutez
|
2019-11-08 03:19:27 +04:00
|
|
|
```
|
|
|
|
|
2019-12-11 13:34:08 +04:00
|
|
|
<!--ReasonLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```reasonligo group=b
|
2020-02-05 19:28:40 +04:00
|
|
|
let a : int = 5 - 10;
|
|
|
|
|
|
|
|
// Subtraction of two nats yields an int
|
|
|
|
let b : int = 5n - 2n;
|
|
|
|
|
|
|
|
// Therefore the following is invalid
|
|
|
|
// let c : nat = 5n - 2n;
|
|
|
|
|
|
|
|
let d : tez = 5mutez - 1mutez;
|
2019-12-10 17:47:31 +04:00
|
|
|
```
|
|
|
|
|
2019-11-08 03:19:27 +04:00
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
|
|
|
|
|
|
|
|
## Multiplication
|
|
|
|
|
|
|
|
You can multiply values of the same type, such as:
|
|
|
|
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
|
|
<!--Pascaligo-->
|
|
|
|
|
2019-12-26 16:29:22 +04:00
|
|
|
```pascaligo group=c
|
2020-02-05 19:28:40 +04:00
|
|
|
const a : int = 5 * 5
|
|
|
|
const b : nat = 5n * 5n
|
|
|
|
// You can also multiply `nat` and `tez` in any order
|
|
|
|
const c : tez = 5n * 5mutez;
|
2019-11-08 03:19:27 +04:00
|
|
|
```
|
|
|
|
|
2019-12-12 17:35:07 +04:00
|
|
|
<!--CameLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```cameligo group=c
|
2020-02-05 19:28:40 +04:00
|
|
|
let a : int = 5 * 5
|
|
|
|
let b : nat = 5n * 5n
|
|
|
|
// You can also multiply `nat` and `tez` in any order
|
|
|
|
let c : tez = 5n * 5mutez
|
2019-11-08 03:19:27 +04:00
|
|
|
```
|
|
|
|
|
2019-12-11 13:34:08 +04:00
|
|
|
<!--ReasonLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```reasonligo group=c
|
2020-02-05 19:28:40 +04:00
|
|
|
let a : int = 5 * 5;
|
|
|
|
let b : nat = 5n * 5n;
|
|
|
|
// You can also multiply `nat` and `tez` in any order
|
|
|
|
let c : tez = 5n * 5mutez;
|
2019-12-10 17:47:31 +04:00
|
|
|
```
|
|
|
|
|
2019-11-08 03:19:27 +04:00
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
|
|
|
|
## Division
|
|
|
|
|
2020-02-05 19:28:40 +04:00
|
|
|
In LIGO you can divide `int`, `nat`, and `tez`. Here is how:
|
2019-11-08 03:19:27 +04:00
|
|
|
|
|
|
|
> ⚠️ Division of two `tez` values results into a `nat`
|
|
|
|
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
|
|
<!--Pascaligo-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```pascaligo group=d
|
2020-02-05 19:28:40 +04:00
|
|
|
const a : int = 10 / 3
|
|
|
|
const b : nat = 10n / 3n
|
|
|
|
const c : nat = 10mutez / 3mutez
|
2019-11-08 03:19:27 +04:00
|
|
|
```
|
|
|
|
|
2019-12-12 17:35:07 +04:00
|
|
|
<!--CameLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```cameligo group=d
|
2020-02-05 19:28:40 +04:00
|
|
|
let a : int = 10 / 3
|
|
|
|
let b : nat = 10n / 3n
|
|
|
|
let c : nat = 10mutez / 3mutez
|
2019-11-08 03:19:27 +04:00
|
|
|
```
|
|
|
|
|
2019-12-11 13:34:08 +04:00
|
|
|
<!--ReasonLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```reasonligo group=d
|
2020-02-05 19:28:40 +04:00
|
|
|
let a : int = 10 / 3;
|
|
|
|
let b : nat = 10n / 3n;
|
|
|
|
let c : nat = 10mutez / 3mutez;
|
2019-12-10 17:47:31 +04:00
|
|
|
```
|
|
|
|
|
2019-11-08 03:19:27 +04:00
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
|
|
|
|
## From `int` to `nat` and back
|
|
|
|
|
2020-02-05 19:28:40 +04:00
|
|
|
You can *cast* an `int` to a `nat` and vice versa. Here is how:
|
2019-11-08 03:19:27 +04:00
|
|
|
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
2020-02-05 19:28:40 +04:00
|
|
|
<!--PascaLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```pascaligo group=e
|
2020-02-05 19:28:40 +04:00
|
|
|
const a : int = int (1n)
|
|
|
|
const b : nat = abs (1)
|
|
|
|
```
|
|
|
|
|
|
|
|
<!--CameLIGO-->
|
|
|
|
```cameligo group=e
|
|
|
|
let a : int = int (1n)
|
|
|
|
let b : nat = abs (1)
|
|
|
|
```
|
|
|
|
|
|
|
|
<!--ReasonLIGO-->
|
|
|
|
```reasonligo group=e
|
|
|
|
let a : int = int (1n);
|
|
|
|
let b : nat = abs (1);
|
2019-11-08 03:19:27 +04:00
|
|
|
```
|
|
|
|
|
2020-01-29 20:15:03 +04:00
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
|
|
|
|
## Check if a value is a `nat`
|
|
|
|
|
2020-02-05 19:28:40 +04:00
|
|
|
You can check if a value is a `nat` by using a syntax specific
|
|
|
|
built-in function, which accepts an `int` and returns an optional
|
|
|
|
`nat`: if `Some(nat)` then the provided integer was indeed a natural
|
|
|
|
number, and not otherwise.
|
2020-01-29 20:15:03 +04:00
|
|
|
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
2020-02-05 19:28:40 +04:00
|
|
|
<!--PascaLIGO-->
|
|
|
|
```pascaligo group=e
|
|
|
|
const is_a_nat : option (nat) = is_nat (1)
|
|
|
|
```
|
|
|
|
|
|
|
|
<!--CameLIGO-->
|
|
|
|
```cameligo group=e
|
|
|
|
let is_a_nat : nat option = Michelson.is_nat (1)
|
2020-01-29 20:15:03 +04:00
|
|
|
```
|
|
|
|
|
2019-12-11 13:34:08 +04:00
|
|
|
<!--ReasonLIGO-->
|
2019-12-26 16:29:22 +04:00
|
|
|
```reasonligo group=e
|
2020-02-05 19:28:40 +04:00
|
|
|
let is_a_nat : option (nat) = Michelson.is_nat (1);
|
2019-12-11 13:34:08 +04:00
|
|
|
```
|
|
|
|
|
2020-02-05 19:28:40 +04:00
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|