math computation sequences Given the following function call: math_sequences(2,5); And the resulting output: ["2+5=7", "2-5=-3", "2*5=10", "2/5=0.4"]; Create a function definition that achieves the output with the given input. Solution Set