Numpy mathematical operations on array using Python:
Mathematical operations on array uses matrices. It uses Numpy to perform element-wise arithmetic, aggregate functions and linear algebra functions in effective ways. · This program starts with including numpy object. · Create two arrays for input purpose. · Next,element wise operations like Addition, Subtraction ,Multiplication and Division. · A scalar function is done by multiplying the array elements with 5. · Aggregate functions like sum, min, max and mean are done using built-in functions. · The advanced functions like square root and exponential are also done. Python Code: import numpy as np # Create arrays s_arr1 = np.array([1, 2, 3, 4]) s_arr2 = np.array([10, 20, 30, 40]) print("The origina...