y = 40 / x
Input 20 Output 40 / 20 = 2
Input 1 Output 40 / 1 = 40
Input 40 Output 40 / 40 = 1
Input 4 Output 40 / 4 = 10
Input 8 Output 40 / 8 = 5
Input 10 Output 40 / 10 = 4
I have input x (20,1,40,4,8,10) and output y (2,40,1,10,5,4). What is the function?
2 answers
30