Ask Question
2 December, 11:50

Write a python function that computes the area of an equilateral triangle given the length of one of its sides. search for a mathematical formula that specifies this relation and translate that formula into python. hint: the desired formula involves taking a square root. remember that you compute a square root of a number in python by raising that number to the 0.5 power using the * * operator.

+2
Answers (1)
  1. 2 December, 14:24
    0
    Area = (√3) / 4 * s² (S = Any side of the Equilateral Triangle)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a python function that computes the area of an equilateral triangle given the length of one of its sides. search for a mathematical ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers