# IsOdd

Checks if a value is odd

```mathematica
IsOdd(4) → false
IsOdd(3) → true
```

#### **Inputs**

`IsOdd(number)`

* `number`- A number expression

Return `true` if a `number` is odd, and `false` otherwise
