The expr Command
expr is an expression evaluator and can be used to perform integer math on the command line.

Using $(())

The $((expression)) construct is called arithmetic expansion.

The bc Command

If you need floating point values, rather than just integers, you may want to look at the bc command.