Many times, you want to bind a numeric value to another property AND perform some calculation over it.
For instance, you would like to bind the width of your control to be half the size of its parent control.
Take a look at this converter
It enables a xaml syntax like this:
{Binding ElementName=control, Path=ActualWidth, Converter={StaticResource arithConverter}, ConverterParameter=*0.5}