The following functions have been defined for three numbers A, B and C:
@ (A, B) = average of A and B *(A, B) = product of A and B /(A, B) = A divided by B
Answer these questions with the above data.
The sum of A and B is given by
*(@(A, B), 2)
/(@(A, B), 2)
@(*(A, B), 2)
@(/(A, B), 2)