Ans = 2 move 8x to other side and 4 to other side
Answer:
561
Step-by-step explanation:
an = dn - (a-d)
The difference is 3.
The first term is 12.
an = 3n - (12-3)
an = 3n - 9
Put n as 1, 2, 3, 4, 5 ....22.
3(1) - 9 = -6
3(2) - 9 = -3
3(3) - 9 = 0
3(4) - 9 = 3
3(5) - 9 = 6
...
3(22) - 9 = 57
Add the first 22 terms.
-6+-3+0+3+6+9+12+15+18+21+24+27+30+33+36+39+42+45+48+51+54+57
= 561
Yes, I believe the points are indeed correct.
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()
(-3 7following is equivalent
__.
4