- 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
The two numbers of a Pythagorean triplet are 100 and 2499. Find the third number of this Pythagorean triplet.
Given: The two numbers of a Pythagorean triplet are 100 and 2499.
To find The third number of this Pythagorean triplet.
Solution:
Pythagorean triplet are in he form of $2 m , m^2 - 1 , m^2 + 1$
$2 m = 100 ; m^2 - 1 = 2499 m^2 + 1 = ?$
$m = \frac{100}{ 2} = 50$
$m = 50$ ;
$m^2 - 1 = 50^2 - 1 = 2500 - 1 = 2499$
$m^2 +1 = 50^2 + 1 = 2500 + 1 = 2501$
So, the third number is 2501
Advertisements