- 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
Find the distance between the following pair of points:$(a, 0)$ and $(0, b)$
Given:
The given pair of points is $(a, 0)$ and $(0, b)$.
To do:
We have to find the distance between the given pair of points.
Solution:
We know that,
The distance between two points \( \mathrm{A}\left(x_{1}, y_{1}\right) \) and \( \mathrm{B}\left(x_{2}, y_{2}\right) \) is \( \sqrt{\left(x_{2}-x_{1}\right)^{2}+\left(y_{2}-y_{1}\right)^{2}} \).
Therefore,
The distance between the points $(a, 0)$ and $(0, b)$\( =\sqrt{(0-a)^{2}+(b-0)^{2}} \)\( =\sqrt{(-a)^{2}+(b)^{2}} \)
\( =\sqrt{ a^{2}+ b^{2}} \)
The distance between the given pair of points is $\sqrt{a^2+b^2}$.
Advertisements