Skip to main content

Co-ordinate

Co-ordinate

Coordinate Geometry is considered to be one of the interesting concepts of Mathematics. Coordinate Geometry describes the link between geometry and algebra through graphs involving curves and lines. It provides geometric aspects in Algebra and enables to solve geometric problems. It is a part of geometry where the position of points on the plane is described using an ordered pair of numbers.

What is a Co-ordinate and a Co-ordinate Plane?

You must be familiar with plotting graphs on a plane from the tables of numbers for both linear and nonlinear equations. The number line which is also known as a Cartesian plane is divided into four quadrants by two axes perpendicular to each other, labeled as the x-axis (horizontal) and the y-axis(vertical line).
The four quadrants along with their respective values are represented in the graph below-
Quadrant 1 : (+x, +y)
Quadrant 2 : (-x, +y)
Quadrant 3 : (-x, -y)
Quadrant 4 : (+x, -y)
The point at which the axes intersect is known as the origin. The location of any point on a plane is expressed by a pair of values (x, y) and these pairs are known as the coordinates.
The figure below shows the Cartesian plane with coordinates (4,2). If the coordinates are identified, the distance between the two points and the interval’s midpoint that is connecting the points can be computed.
Geometry

Distance Between two Points

Let the two points be A and B, having coordinates to be (x1,y1) and (x2,y2) respectively.
Thus, the distance between two points is given as-
d=(x2x1)2+(y2y1)2

Midpoint of a line connecting two points:

Consider the same points A and B, having coordinates to be (x1,y1) and (x2,y2) respectively. Let M(x,y) be the midpoint of lying on the line connecting these two points A and B. The coordinates of the point M is given as-
M(x,y)=(x1+x22,y1+y22)
Equation of a Line- Equation of a line can be represented in many ways, few of which is given below-
(i) General form- The general form of a line is given as Ax + By + C = 0.
(ii) Slope intercept form- Let x,y be the coordinate of a point through which a line passes, m be the slope of a line, and c be the y-intercept, then the equation of a line is given as-
y=mx+c
(iii) Intercept form of a line- Consider a and b be the x-intercept and y-intercept respectively, of a line, then the equation of a line is represented as-
xa+yb=1
Slope of a line- Consider the general form of a line Ax + By + C = 0, the slope can be found by converting this form to the slope intercept form.
Ax+By+C=0
By=AxC
or y=ABxCB
Comparing the above equation with y = mx + c,
m=AB
Thus we can directly find the slope of a line from the general equation of a line.
Angle between two lines-
Consider two lines A and B, having their slopes to be m1 & m2 respectively.
Let θ be the angle between these two lines, then the angle between them can be represented as-
tanθ=m1m21+m1m2
Special Cases-
Case 1- When the two lines are parallel to each other,
m1=m2 = m
Substituting the value in the equation above,
tanθ=mm1+m2=0
θ=0
Case 2- When the two lines are perpendicular to each other,
m1.m2=1
Substituting the value in the original equation,
tanθ=m1m21+(1)=m1m20 which is undefined.
θ=90
Section Formula-
Consider a line A and B having coordinates (x1,y1) & (x2,y2) respectively. Let P be a point that which divides the line in the ratio m:n, then the coordinates of the coordinates of the point P is given as-
(i) When the ratio m:n is internally-
(mx2+nx1m+n,my2+ny1m+n)
(ii) When the ratio m:n is externally-
(mx2nx1mn,my2ny1mn)
Students can follow the link provided to learn the proof for the section formula.
Examples- Find the distance between the points M (4,5) and N (-3,8).
Solution- Applying the distance formula we have,
d=(34)2+(85)2
d=(7)2+(3)2=49+9
d=58
Example- Find the equation of a line parallel to 3x+4y = 5 and passing through points (1,1).
Solution- For a line parallel to the given line, the slope will be of the same magnitude.
Thus the equation of a line will be represented as 3x+4y=k
Substituting the given points in this new equation, we have
k=3×1+4×1=3+4=7
Therefore the equation is 3x+4y=7

Area of a triangle:
The area of the triangle whose vertices are (x1,y1),(x2,y2) and (x3,y3) is
12|x1(y2  y3) + x2(y3  y1) + x3(y1  y2)|
If the area of a triangle whose vertices are (x1,y1),(x2,y2) and (x3,y3) is zero, then the three points are collinear.
For detailed, chapter wise solutions for NCERT questions, students can compare their answers with NCERT sample answers given here by Byju’s –NCERT Solutions
Click here to Download Co-ordinate Geometry pdf

Comments

Popular posts from this blog

OFFSET in Computer Science

OFFSET in Computer Science In the post, We will understand what is the meaning of OFFSET in computer science with an example. In computer science offset comes picture at may place like packing a data structure, encoding the data etc in some standard protocol so that other parties can deserialise it and understand the data. We will understand its important how does it work with example. suppose we have a data structure for a student like { name:string[20] roll: int[4] course: string[25] batch: int[4] } We want to serialise below student data  { name:"Amit Gupta" roll: 1234 course:Computer Science" batch: 2018 } Our protocol follow the rule that we will insert a value and if space will remain empty we will fill it with $ for example length of "Amit Gupta" is 10 but standard size is 20 so will fill 10 $ after "Amit Gupta". So serialisation of above data will be Amit Gupta$$$$$$$$$$1234Computer Sc...

Variable In C

Variable Like any other programming language in C programming language, we use a variable to store value, a value is any data like a number a or a character. In this post, we will learn about datatype of C programming language. Type Of Variable In C In this section, we will discuss how to store the following type of variable in C How to store an integer in C? How to store a float in C? How to store a double in C? How to store a long in C? How to store a character in C? As we already discussed that variable used to store data so that we can use it of other computation, for example, suppose we want to calculate the sum of two number then we have to store these two numbers first only after that we can use these two stored value to compute the sum. The entity that used to store a value called variable. What does it mean is suppose we tell a variable to store a number whose value is 5, the variable will place this number 5 in memory and we can variable in...

Clique in Graph

Clique in Graph In this tutorial, we will learn about the clique in the graph theory. Clique In graph theory, a clique is a subset of vertices of an undirected graph such that every two distinct vertices in the clique are adjacent. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Supplementary angles

Supplementary angles Supplementary angles  are two angles with a sum of  180 ^\circ 1 8 0 ∘ 180, degree . A common case is when they lie on the same side of a straight line.