^^ they’re right so hope it helps
Answer:
Please see explanation for the answer. The code is written in python and is as given below:
Step-by-step explanation:
The solution is obtained on the Python with the following code
import matplotlib.pyplot as plotter
import numpy as npy
x_s = npy.linspace(-5,5,100) #Defining a linear sample space with boundaries as -5 to 5 and 100 as number of samples.
def sigmo(z):return 1/(1 + npy.exp(-z)) #Defining sigmoid function for the f(x).
plotter.plot(x_s, sigmo(x_s))
plotter.plot([-5,5],[.5,.5])
plotter.xlabel("z")
plotter.ylabel("sigmoid(z)")
plotter.show()
Slope is rise over run so since it rose 4 and went 1 to the right the slope would be 4 because 4/1=4
P.S. The actual formula for slope is y2-y1 over x2-x1 so it would be 5-1/1-0 which again is 4/1
Just plus in x for -3
f(x) = 4(-3)^2 + 3(-3) - 11
f (x) = 4(9) -9 - 11
f(x) = 36 - 20
f(x) = 16
Answer:
<u>Cost = 25 + 50h</u>
cost for 8 hours of work = $425
cost for 10 hours of work = $525
Step-by-step explanation:
The question is as following:
A plumber charges $25 for a service call plus $50 per hour of service write an equation to represent the cost of hiring this plumber.
what will be the cost for 8 hours of work? 10 hours of work?
=======================================================
A plumber charges $25 for a service call plus $50 per hour
<u>Cost = 25 + 50h</u>
Where h is the number of hours of service
8 hours of work: h = 8
Substitute with h = 8 at the equation of cost
<u>Cost = 25 + 50* 8 = $425</u>
10 hours of work: h = 10
Substitute with h = 10 at the equation of cost
<u>Cost = 25 + 50 * 10 = $525</u>