Ask Question
20 September, 06:37

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.

+5
Answers (1)
  1. 20 September, 07:01
    0
    Area = (√3) / 4 * s² (S = Any side of the Equilateral Triangle)
Know the Answer?
Not Sure About the Answer?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers