Divide a value or another variable by your variable. Pass an integer or the name of a second variable as the parameter.
bacon: 21skillets: 3
{{ bacon | divide($skillets) }}{{ skillets | divide(3) }}
{{ Statamic::modify($bacon)->divide($skillets) }}{{ Statamic::modify($skillets)->divide(3) }}
71