219k views
4 votes
EASY FOR THE RIGHT PERSON! TONS OF POINTS! Write these functions as numbers instead of words

a. This function adds 3 to the input number
b. This function adds 3 to the input number and then multiplies the answer by itself
c. This function which adds 3 to the input number then divides the answer by 12 minus the input number.
d. This function raises the input number to the 5th power, then subtracts 4 times the input number, finally adding 6.
e. This function outputs -45 no matter what the input number is
f. This function puts out the same number that comes in

User Jethroo
by
5.5k points

1 Answer

5 votes
a. f(b) = 3+b

b. f(x) = (x+3)²

c. f(x) = (x+3)/(12-x)

d. f(x) = x⁵-4x+6

e. f(x) = -45

f. f(x) = x
User StarTrekRedneck
by
5.4k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.