Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

6. The Pythagorean Theorem relates the lengths of the three sides of any right triangle. The legs of a right triangle (the two sides of

image text in transcribed

6. "The Pythagorean Theorem relates the lengths of the three sides of any right triangle. The legs of a right triangle (the two sides of the triangle that meet at the right angle) are customarily labelled as having lengths "a" and "b", and the hypotenuse (the long side of the triangle, opposite the right angle) is labelled as having length "c". The lengths are related by the following equation: a n2+bA2 -c A2." - refer to http://www.purplemath.com/modules/pythagthm.htm for details. This equation allows you to find the length of a side of a right triangle when they've given you the lengths for the other two sides, and, going in the other direction, allows you to determine if a triangle is a right triangle when they've given you the lengths for all three sides. This equation can alternatively be written as c sqrt of (a 2+b 2). You can find the square root of a number by calling the standard function Math.sqrt. For example, the statement double y - Math.sqrt(x) sets y to the square root of x. Given the right triangles described below, write a program to compute the lengths of the remaining sides using a program a, a=48 and c 80 b. a -84 and c 91 Determine if the following triangles are right-angled triangles a. I. II. a -45, b 55, and c 75 b. a-28, b 45, and c 53 Triangle a Attributes + private boolean rightTriangle + private double a +private double b + private double c O Operations +public boolean isRightTriangle0) + public double getAO + public double getB0 + public double getcO +public Triangle double a, double b, double c)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions