- 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
Is 10,24,26 are Pythagorean Triplet ?
To Do: Find if 10,24 and 26 are Pythagorean triplet
Solution:
Numbers that follow the Pythagoras theorem are called Pythagorean triplets
Three numbers a, b and c form a Pythagorean triplet if:
$a^2+b^2=c^2$
Let us check if 10,24 and 26 satisfy the equation:
$10^2+24^2=26^2$
$100+576=676$
So, the numbers 10, 24 and 26 form a Pythagorean triplet.
Advertisements