The area of each triangular face is
.. A = (1/2)*b*h
.. Aside = (1/2)*(6 cm)*(5 cm) = 15 cm^2
The area of the triangular base is
.. Abase = ((√3)/4)*s^2 = (√3)/4*(6 cm)^2 = 9√3 cm^2
The total surface area is the base area plus the area of the three sides.
.. Atotal = Abase + 3*Aside
.. = 9√3 cm^2 +3*15 cm^2
.. = (45 +9√3) cm^2
.. ≈ 60.6 cm^2
Actually, there's an error in the picture. The height of the side should be 4, and the length of the edge should be 5. Making that adjustment, the total area is 51.6 cm^2.
It is hard to tell what is intended. Not all answers are showing, so we can't "reverse-engineer" the problem from the answers.
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:
Step-by-step explanation:
7 books.................................3 magazines
14 books.................................6 magazines
21 books................................9 magazines
28 books..............................12 magazines
of course we ca do it
7/3=28/x
x=(3*28)/7=12
Answer:
(-3, 5), (1, 4), (-2, 3), and (0, 2).
Step-by-step explanation:
When a function is inverted, the x-values become y-values, and the y-values become x-values.
The ordered pairs for the function are (5, -3), (4, 1), (3, -2), and (2, 0).
After inversion, the ordered pairs will be (-3, 5), (1, 4), (-2, 3), and (0, 2).
Hope this helps!