# Divide

### Description

Divide two values by each other.

### Number|Event / Number|Event

```java
Scalar<Number|Event> / Scalar<Number|Event> : Scalar<Number>
Scalar<Number|Event> / GroupedScalar<Number|Event> : GroupedScalar<Number>
GroupedScalar<Number|Event> / Scalar<Number|Event> : GroupedScalar<Number>
GroupedScalar<Number|Event> / GroupedScalar<Number|Event> : GroupedScalar<Number>
```

Two arguments of type Scalar\<Number> divded by each other result in a Scalar\<Number> which is the result of the division.

If one argument is a Scalar, and the other one a GroupedScalar, then the operation is performed by taking the Scalar value and the value of each group value, which results another GroupedScalar (it has same group size, as the one from the input argument).

If both arguments are GroupedScalar, then the operation is performed by taking values with same group key, which  results in another Grouped Scalar (the group size is equal or smaller than the ones of the input arguments).

### Examples

Calculating 3 divided by 2 results in 1.5

```java
3 / 2
```
