Answer:
plane HNA, HMB, ANG ...
Step-by-step explanation:
Any combination of three points on plane K will work unless all three are on the same line.
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()
Distance=speed times time
if they take the same time, we cal the time , t
b=bike speed
w=walking speed
bikedistnace=17=bt
walkdistance=9=wt
b is 4 more than w
b=4+w
we have
17=bt
9=wt
b=4w
ok so
multiply first equation by 9 and 2nd by 17
153=9bt
153=17wt
set equal
9bt=17wt
divide both sides by t
9b=17w
sub b=4+w for b
9(4+w)=17w
distribute
36+9w=17w
minus 9w both sides
36=8w
divide both sides by 8
4.5=w
he walks 4.5kph