- 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
Write a Pythagorean triplets whose one number is $40$.
Given: A number $40$ is one number of a Pythagorean triplet.
To do: To write the Pythagorean triplet.
Solution:
As given, one number is $40$.
we know, Pythagorean triplets$=2m,\ m^2+1,\ m^2-1$
Here, $2m=40$
$\Rightarrow m=\frac{40}{2}=20$
$\Rightarrow m^2+1=20^2+1=401$
$\Rightarrow m^2-1=20^2-1=399$
Hence, the Pythagorean triplets: $( 40,\ 401,\ 399)$
Advertisements