Simple Arithmatic Calculator This is a simple command line math calculator. It can handle +-*/^ and (). Algorithm The way this program works is to take in an equation and convert it to Reverse Polish Notation. It will then calculate the results using the reformatted equation.