Answer:65
Step-by-step explanation: So the answers would be 78 as well
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()
Mona mona mona mona monq mona
Answer:
The answer is G
Step-by-step explanation:
2 x 6 = 12
12 - 6 = 6
_________
-2 x 6 = -12
-12 - 6 = (-18)
Answer:
The cost of one taco is $0.87 and the cost of one enchilada is $1.16
Step-by-step explanation:
Let the cost of tacos be X
and cost of enchiladas be y
So, by using given data, we have following equations
3X + 2Y = 4.93 (1)
2X + 4Y = 6.38 (2)
So, first multiply 1st equation by 2 and 2nd equation by 3, then subtracting 1st equation by 2nd.
= 2 × ( 3X + 2Y = 4.93) (1)
= 3 × (2X + 4Y = 6.38) (2)
= - (6X + 4Y = 9.86) (1)
= 6X + 12y = 19.14 (2)
= 8Y = 9.28
Y = 9.28 ÷ 8 = 1.16
By putting the value of Y in equation 1, we get
3X + 2(1.16) = 4.93
3X + 2.32 = 4.93
X = 2.61 ÷ 3 = 0.87
Hence, the cost of one taco is $0.87 and the cost of one enchilada is $1.16.