- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Given that one of the numbers of a Pythagorean triplet is 18, find the other two numbers.
Given :That one of the numbers of a Pythagorean triplet is 18
To Do: Find the other two numbers of the triplet
.
Solution:
Given, one number is 18
$2m = 18$
$m = 9$
Second number = $m^2+1 = 9^2+1 = 81+1 = 82$
Third number = $m^2-1 = 9^2-1 = 81-1 = 80$
Pythagorean triplet is (18, 80, 82)
Advertisements