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:
10
Step-by-step explanation:
substitute the given values into the expression
2(x + z) - y
= 2(6 + 3) - 8
= 2(9) - 8
= 18 - 8
= 10
Answer:
thanks if u need help let me know
Step-by-step explanation:
Answer:
x = 1/2 y = -1/3
Step-by-step explanation:
Split it into 2 equations:
10x-9y=8
and
21y+15x=0.5
10x - 9y = 8
Step 1: Divide both sides by 10:
x = (8+9y)/(10)
Substitute x = (8+9y)/(10) into 21y+15x=0.5 :
21y + (3(8+9))/(2) = 0.5
Solve for y
<u>y= -1/3</u>
Substitute y= -1/3 into x = (8+9y)/(10)
<u>x = 1/2</u>
<u />