The height of a triangle alone is not enough information to find the perimeter. You need some angle measures or side lengths.
Chat with our AI personalities
Height = (Perimeter/2) - Base
the height of a triangle is three feet longer than the base. The area of the triangle is 35 square feet. Find the height andbase of the triangle
A2+b2=c2
The basic formula for the area of a triangle (At) is one half the length of the base (b) times the height (h).bh/2ORbh*0.5The height of a triangle is the length of the line drawn perpendicular (at right angles to) to the base from the angle opposite the base.Heron's Formula uses the side lengths of the triangle to find the area. The three side lengths are labelled a, b, and c. This formula also includes the semi-perimeter, s, which is half the perimeter.s = (a + b + c)/2A = sqrt [s(s - a)(s - b)(s - c)]
To find the area and perimeter of a triangle in a C program, you would first need to input the three sides of the triangle. Then, you can calculate the perimeter by adding the three sides together. Next, you can calculate the semi-perimeter by dividing the perimeter by 2. Finally, you can use Heron's formula to calculate the area of the triangle using the semi-perimeter and the three sides. The C program would involve taking user input, performing the necessary calculations, and outputting the results.