Bradley L. answered 10/21/22
Bradley | Coding Tutor
Hi there Jijiuha. When we have a function like this, it's essentially saying "whatever number passed into the function, do to it whatever is on the right side of the equals sign." If we had something like f(x) = x2 then f(-5_ would be -52 which is 25. In this problem, we have f(x) = -4x + 3. To find f(-5), we replace x with -5:
f(-5) = -4(-5) + 3
f(-5) = 20 + 3
f(-5) = 23
Hope that helps!