Solver Finding midpoint of 2 points
Algebra
->
Graphs
-> Solver Finding midpoint of 2 points
Log On
Algebra: Graphs, graphing equations and inequalities
Section
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'Finding midpoint of 2 points'
This Solver (Finding midpoint of 2 points)
was created by by
Shin123(626)
:
View Source
,
Show
,
Put on YOUR site
About Shin123
:
Just a kid who solves math problems for fun :)
==section input Find the midpoint of these 2 points, (*[input x1=1],*[input y1=3]) and (*[input x2=3],*[input y2=5]) ==section solution We use the midpoint formula to solve. The x coordinate is {{{(x[1]+x[2])/2}}} Plug in the values, {{{($x1+$x2)/2}}} *[assign x3=$x1+$x2] {{{$x3/2}}} *[assign x4=$x3/2] The x coordinate is $x4. Now for the y. {{{($y1+$y2)/2}}} *[assign y3=$y1+$y2] {{{$y3/2}}} *[assign y4=$y3/2] The y coordinate is $y4. The midpoint is at point ($x4,$y4). ==section output x3,x4,y3,y4 ==section check