how to perform arithmetic operation add, sub, div
(( )) construct permits arithmetic expansion and evaluation. In its simplest form, a=$(( 5 + 3 )) would set a to 5 + 3.
[[]] an alternate form of conditional expressions example [[ $i -le 10 ]] we can use AND -a and OR -o as well.