Answer:
2,120 m
Step-by-step explanation:
Cedric lives at one end of Main Street, and Landon lives at the other end of the street
Main Street is 6.02 Kilometers long. Cedric walks 3.9 kilometers toward Landon's house.
Step 1
We calculate the kilometers Cedric has to walk to arrive at Landon's house
This is given as:.
6.02km - 3.9 km
= 2.12 km
Step 2
How many more meters must Cedric walk to arrive at Landon's house?
We convert from km to m
1 km = 1000m
2.12km = x
Cross Multiply
x = 2.12 × 1000m
x = 2120 m(meters)
Answer:
The sum of the internal ángles = 360°
(3y+40)° and (3x-70°) are suplementary angles = 180°
then:
(3x-70) + (3y+40) + 120 + x = 360 ⇒ first eq.
(3y+40) + (3x-70) = 180 ⇒ second eq
development:
from the first eq.
3x + x + 3y = 360 + 70 - 40 - 120
4x + 3y = 430 - 160
4x + 3y = 270 ⇒ third eq.
3y = 270 - 4x
y = (270 - 4x) / 3 ⇒ fourth eq.
from the secon eq.:
3y + 3x = 180 + 70 - 40
3y + 3x = 250 - 40
3y + 3x = 210 ⇒ fifth eq.
multiply by -1 the fifth eq and sum with the third eq.
-3y - 3x = -210 ⇒ (fifth eq. *-1)
3y + 4x = 270
⇒ 0 + x = 60
x = 60°
from the fourth eq.
y = (270-4x)/3
y = (270-(4*60)) / 3
y = (270 - 240) / 3
y = 30/3
y = 10°
Probe:
from the first eq.
(3x-70) + (3y+40) + 120 + x = 360
3*60 - 70 + 3*10 + 40 + 120 + 60 = 360
180 - 70 + 30 + 40 + 120 + 60 = 360
180 + 30 + 40 + 120 + 60 - 70 = 360
430 - 70 = 360
Answer:
y = 10
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()
We have been given that in triangle ABC angle A=45 angle B =40 and a=7. We are asked to find the equation that we can use to solve for 'f'.
We have two angles and opposite sides to these angles.
We will use Law of Sines to solve our given problem.
, where a, b and c are opposite sides corresponding to angles A, B, and C respectively.
The angle opposite to side b is 40 degrees and angle opposite to side a is 45 degrees.
Upon substituting these values in Law of Sines, we will get:

Therefore, our required equation would be
.