Find the averege ,maximum,minimum and sum three number

5, 6, 7

(x+y+z)/3

max(x,y,z)
min(x,y,z)
x+y+z

To find the average, maximum, minimum, and sum of three numbers, you need to follow these steps:

1. Identify the three numbers you want to work with.

2. To find the sum, add the three numbers together.

3. To find the average (also called the mean), divide the sum by the total number of values. In this case, divide the sum by 3 (since you have three numbers).

4. To find the maximum number, compare the three numbers and see which one is the greatest.

5. To find the minimum number, compare the three numbers and see which one is the smallest.

Let's say your three numbers are 5, 10, and 3. We can apply the steps mentioned above:

1. Numbers: 5, 10, 3.
2. Sum: 5 + 10 + 3 = 18.
3. Average: 18 ÷ 3 = 6.
4. Maximum: The highest number is 10.
5. Minimum: The lowest number is 3.

So, the average of the three numbers is 6, the maximum is 10, the minimum is 3, and the sum is 18.