so I think u you divide something and you times and then you multiply it
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:
210 miles in 1 hour
Step-by-step explanation:
steps are in picture
Answer:
65 degrees
Step-by-step explanation:
Since complementary angles are 2 angles that add up to 90 degrees, all you have to do is subtract 25 from 90.
When you do that you get 65.
Example: 90 - 25 = 65
Since the area of a triangle is in the form
area=0.5(base)(height)
height=base+7
let base=x
area=0.5(x)(7+x)
30=3.5x+0.5x^2
multiply the equation by 2
60=7x+x^2
subtract 60 from both sides
x^2+7x-60=0
(x-5)(x+12)=0
thus x=5 or x=-12 since we are only considering positive answers
x=-12 is rejected
so base=5 and height=5+7=12