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()
Answer:
6kg pure copper and 30 kg 10% copper was mixed to give 36kg of 25% alloy
Step-by-step explanation:
Here, we want to produce 36 kg of 25% alloy
Let the Pure copper be x kg while 10% alloy be y kg
Pure copper is simply 100% copper
Thus;
x + y = 36 •••••(i)
Then;
100% of x + 10% of y = 25% of 36
= x + 0.1y = 9 •••••• ii)
From i x = 36-y
from ii, x = 9-0.1y
Equate both x
36-y = 9-0.1y
36-9 = 0.1y + y
0.9y = 27
y = 27/0.9
y = 30
x = 36-y
x = 36-30
x = 6 kg
Answer:
1 7/12 cups
Step-by-step explanation:
1/2 x 3 1/6 = 1/2 x 19/6 = 19/12 or 1 7/12
The transformations that can occur to the graph of the function y = cos x that will exhibit changes would be changes to the angle, or changes to the coefficient. The transformations can be viewed as follows:
y = cos x transforms to y = cos (kx)
k > 1 ; a horizontal shrink occurs
0 < k < 1 ; a horizontal stretch occurs
y = cos x transforms to y = A cos x
|A| > 1 ; a vertical stretch occurs
|A| < 1 ; a vertical shrink occurs
The answer is y=-8 I’m pretty sure