Define a language for arithmetic expressions that consist of
Define a language for arithmetic expressions that consist of unsigned integer numbers and operators +, -, *, and /. An unsigned integer number consists of any number of digits (0 through 9), but contains no leading zeros. For example, 0, 1, 700, 101, 10 are all acceptable integers, but 00, 01, 0009, 0101 are not.
An arithmetic expression consists of any number of unsigned integer numbers connected by the four operators.
No parenthesis are used. Write a regular expression for the arithmetic expressions defined above.
please show all steps . thank you
Solution
}
Regular expression for arithmetic operations defined above is :

