Ask Question
17 August, 21:13

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.

+3
Answers (1)
  1. 17 August, 21:37
    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 you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers