Math II · G-GPE.6

Partitioning a Directed Segment in a Given Ratio

Partitioning segments is the math of precise in-between locations: map points, animation frames, design marks, proportional placement, and interpolation.

Concept Geometry
Domain Expressing Geometric Properties with Equations
Read time 8 minutes

What this learning objective is really asking you to learn

This objective asks students to find a point that divides a directed line segment in a given ratio. A directed segment is a segment with a start point and an end point. The direction matters because a ratio such as 2:3 from \(A\) to \(B\) means something different from 2:3 from \(B\) to \(A\). The point is not merely “somewhere between.” It is located a precise fraction of the way along the path from one endpoint to the other.

For example, suppose \(A\) is \((0, 0)\) and \(B\) is \((10, 0)\). A point that partitions the segment from \(A\) to \(B\) in the ratio 2:3 is 2 parts from \(A\) and 3 parts from \(B\), making 5 total parts. The point is \(2/5\) of the way from \(A\) to \(B\), so it is at \((4, 0)\). If the segment were vertical, diagonal, or in three-dimensional space, the same fraction idea would work coordinate by coordinate.

The most important idea is weighted movement. To get from \(A\) to \(B\), compute the change in x and the change in y. Then take the required fraction of that change. If \(A = (x_{1}, y_{1})\) and \(B = (x_{2}, y_{2})\), then the point fraction \(t\) of the way from \(A\) to \(B\) is:

\[(x_{1} + t(x_{2} - x_{1}), y_{1} + t(y_{2} - y_{1}))\]

For a ratio m:n from \(A\) to \(B\), the fraction from \(A\) is \(m/(m+n)\). So the partition point is:

\[(x_{1} + (m/(m+n))(x_{2} - x_{1}), y_{1} + (m/(m+n))(y_{2} - y_{1}))\]

This formula is more understandable than a memorized partition formula because it says what is happening: start at \(A\), move part of the way toward \(B\).

The midpoint formula is a special case. If the ratio is 1:1, then the point is halfway from one endpoint to the other, so \(t = 1/2\). The midpoint becomes \(((x_{1}+x_{2})/2, (y_{1}+y_{2})/2)\). This objective generalizes midpoint to any ratio.

Why students should learn this math

Students should learn this because dividing a segment proportionally is one of the most practical coordinate skills in geometry and design. Real systems often require placing something not exactly in the middle, but in a specified proportion. A road marker may be placed one-third of the way along a route. A designer may place a support point two-fifths of the way across a beam. An animator may interpolate an object’s position between two keyframes. A map app may locate a point 70 percent of the way from one coordinate to another. A graphic designer may divide a line according to a layout ratio.

This objective is also the mathematics behind interpolation. Interpolation means estimating or defining values between known values. If a train travels in a straight path from one location to another at steady speed, its position after 30 percent of the travel time is 30 percent of the way from the starting coordinates to the ending coordinates. Animation software uses this constantly. A character's hand may move from one position to another; intermediate frames are calculated by moving a fraction of the way between positions.

In computer graphics and game development, this is often called linear interpolation, or “lerp.” If an object starts at position \(A\) and ends at position \(B\), then its position at parameter \(t\) is \(A + t(B - A)\). That is the same formula students use here. This is a beautiful example of school geometry showing up directly in modern technology.

In navigation and GIS, proportional location matters. If a delivery truck has completed 40 percent of a straight route between two mapped points, its approximate coordinate position can be computed by partitioning the segment. Real routes curve and follow roads, so actual mapping is more complex, but the proportional segment idea is a foundation.

In statistics and data visualization, interpolation appears when estimating values between measured data points. In physics, position under constant velocity is linear interpolation between positions. In design, ratios control layout, balance, spacing, and scaling. In architecture and engineering, proportional division helps locate supports, joints, control points, and measurement marks.

The “why” is simple: this objective teaches students how to locate an in-between point with precision. The world is full of in-between points.

The historical machinery: ratio, section, and coordinate interpolation

The idea of dividing a segment in a ratio is ancient. Greek geometry studied ratios and proportional segments deeply, especially in relation to similarity. Euclid’s Elements includes extensive work on proportional reasoning, and segment division appears naturally in geometric construction and proof. Before coordinates, mathematicians could construct points that divided segments in given ratios using straightedge and compass techniques.

Coordinate geometry later turned proportional division into algebraic formulas. Once points were represented by ordered pairs, dividing a segment became a matter of dividing the coordinate changes. This was a major simplification. Instead of constructing the point geometrically every time, one could calculate it.

The same idea evolved into vector notation. A point from \(A\) to \(B\) can be written as \(A + t(B - A)\). This notation is common in linear algebra, computer graphics, physics, and engineering. It represents a point on a line using a parameter \(t\). When \(0 \le t \le 1\), the point lies between \(A\) and \(B\). When \(t = 0\), the point is \(A\). When \(t = 1\), the point is \(B\). When \(t = 1/2\), it is the midpoint. When \(t\) is outside the interval from 0 to 1, the point lies beyond one endpoint on the same line.

This historical movement—from geometric ratio to coordinate formula to vector interpolation—is exactly the kind of big map students benefit from seeing. The school formula is not an arbitrary coordinate trick. It is a piece of a long mathematical tradition about proportion, movement, and location.

Where this fits in the big map of mathematics

This objective connects coordinate geometry, ratios, similarity, vectors, and functions. It follows naturally after midpoint and distance work. The midpoint divides a segment in a 1:1 ratio. This objective asks: what if the ratio is 1:2, 2:3, 3:5, or any other positive ratio?

It also prepares students for similarity. Similar figures are built from proportional relationships. Dilations move points along rays from a center by a scale factor. Partitioning a segment is related: you locate a point by moving a fraction of the way along a segment. Both ideas use proportional distance.

It prepares students for parametric thinking. The formula \(A + t(B - A)\) treats position as a function of a parameter \(t\). That is the seed of parametric equations, vectors, linear interpolation, and motion modeling. A point can be described not only by its final coordinates but by a process: start here, move this fraction of the way there.

It prepares students for coordinate proof. If a theorem involves medians, centroids, ratios, or divided segments, coordinate partition methods can prove the relationships. It also prepares students for physics, where position can be described as initial position plus time times velocity.

In the big map, this objective is about proportion in space. Arithmetic ratios become geometric locations.

How to execute the skill technically

The cleanest method is the movement method. Suppose the segment starts at \(A(x_{1}, y_{1})\) and ends at \(B(x_{2}, y_{2})\). Find the change from \(A\) to \(B\):

\[\Delta x = x_{2} - x_{1}\]
\[\Delta y = y_{2} - y_{1}\]

If the point is fraction \(t\) of the way from \(A\) to \(B\), then:

\[x = x_{1} + t\Delta x\]
\[y = y_{1} + t\Delta y\]

For a ratio m:n, the fraction from the first endpoint is \(m/(m+n)\). That is because the full segment is divided into \(m+n\) total parts, and the point is \(m\) of those parts away from the starting endpoint.

For example, let \(A = (2, 1)\) and \(B = (12, 6)\). Find the point that partitions \(AB\) in the ratio 3:2 from \(A\) to \(B\).

There are \(3 + 2 = 5\) total parts. The point is \(3/5\) of the way from \(A\) to \(B\).

The change from \(A\) to \(B\) is:

\[\Delta x = 12 - 2 = 10\]
\[\Delta y = 6 - 1 = 5\]

Take \(3/5\) of each change:

\[(3/5)10 = 6\]
\[(3/5)5 = 3\]

Add to the starting point:

\[x = 2 + 6 = 8\]
\[y = 1 + 3 = 4\]

So the point is \((8, 4)\).

This makes sense visually. The point is closer to \(B\) than to \(A\) because it has traveled 3 of the 5 parts from \(A\).

The weighted average formula is another common form. For a point dividing \(A(x_{1}, y_{1})\) to \(B(x_{2}, y_{2})\) in the ratio m:n, the coordinates can be written as:

\[((n x_{1} + m x_{2})/(m+n), (n y_{1} + m y_{2})/(m+n))\]

This formula looks backward at first because the coordinate of \(A\) is weighted by \(n\) and the coordinate of \(B\) is weighted by \(m\). That happens because a point closer to \(B\) gives more weight to \(B\)'s coordinates. The movement method is usually more intuitive for students.

A worked example: locating a trail marker

A trail map shows a straight trail segment from station \(A(4, 2)\) to station \(B(16, 8)\). A water marker should be placed one-fourth of the way from \(A\) to \(B\). Find its coordinates.

Here \(t = 1/4\). The change from \(A\) to \(B\) is:

\[\Delta x = 16 - 4 = 12\]
\[\Delta y = 8 - 2 = 6\]

One-fourth of the change is:

3 in x and 1.5 in y.

Add to \(A\):

\[(4 + 3, 2 + 1.5) = (7, 3.5)\]

The marker should be at \((7, 3.5)\).

If the marker were three-fourths of the way, the coordinates would be \((13, 6.5)\). The formula adapts immediately because it is based on fractional movement.

Directed segments and why direction matters

A ratio is tied to the direction named in the problem. “The point partitions segment \(AB\) in the ratio 2:3” usually means the distance from \(A\) to the point compared with the distance from the point to \(B\) is 2:3. The point is \(2/5\) of the way from \(A\) to \(B\).

But if the problem says from \(B\) to \(A\), the starting point changes. The point \(2/5\) of the way from \(B\) to \(A\) is not the same point. This is why the phrase directed segment matters. Always identify the starting endpoint.

Common mistakes and how to avoid them

One common mistake is using the ratio number directly instead of converting it to a fraction of the whole. A ratio 2:3 does not mean move \(2/3\) of the way. It means move \(2/(2+3) = 2/5\) of the way from the first endpoint.

Another mistake is averaging coordinates for every ratio. Averaging gives only the midpoint. A ratio 1:1 uses averaging. Other ratios require weighted movement.

Students also reverse the direction. If the point is supposed to be closer to \(A\), but the answer is closer to \(B\), the ratio may have been interpreted backward. A quick visual reasonableness check helps.

Another mistake is applying the ratio to only x or only y. A point along a line segment must move proportionally in both coordinates.

A final mistake is memorizing the weighted formula without understanding it. The movement formula is safer: start at the first point and move the required fraction of the way to the second point.

Problem Library

Problems in the App From This Objective

144 problems across 12 archetypes in the app.

average coordinates.
12 problems Warmup Practice Mixed Review Assessment
Problem 1

Find the midpoint of segment with endpoints (0,0) and (6,8).

Open in simulator
Problem 2

Find the midpoint of segment with endpoints (-2,5) and (4,-1).

Problem 3

Find the midpoint of segment with endpoints (1/2,3) and (5/2,-1).

Problem 4

Find the midpoint of segment with endpoints (-7,-3) and (1,5).

Problem 5

Find the midpoint of segment with endpoints (2,4) and (8,10).

Problem 6

Find the midpoint of segment with endpoints (-3,7) and (5,1).

Problem 7

Find the midpoint of segment with endpoints (-4,-6) and (-2,-8).

Problem 8

Find the midpoint of segment with endpoints (0,-5) and (6,3).

Problem 9

Find the midpoint of segment with endpoints (1/3,2) and (5/3,4).

Problem 10

Find the midpoint of segment with endpoints (-1/2,-3) and (3/2,7).

Problem 11

Find the midpoint of segment with endpoints (10,-12) and (-4,2).

Problem 12

Find the midpoint of segment with endpoints (1,2) and (4,5).

use weighted average or vector steps.
12 problems Warmup Practice Mixed Review Assessment
Problem 13

Find the point one-third of the way from (0,0) to (9,6).

Open in simulator
Problem 14

Find the point two-thirds of the way from (0,0) to (9,6).

Problem 15

Find the point one-third of the way from (-3,2) to (6,8).

Problem 16

Find the point two-thirds of the way from (2,-1) to (8,11).

Problem 17

Find the point one-half of the way from (1,1) to (5,9).

Problem 18

Find the point one-fourth of the way from (0,0) to (8,12).

Problem 19

Find the point three-fourths of the way from (0,0) to (8,12).

Problem 20

Find the point one-half of the way from (-4,-2) to (6,8).

Problem 21

Find the point one-fifth of the way from (0,0) to (10,15).

Problem 22

Find the point four-fifths of the way from (0,0) to (10,15).

Problem 23

Find the point one-half of the way from (-2,5) to (4,-1).

Problem 24

Find the point one-fourth of the way from (-8,-4) to (0,4).

apply section formula.
12 problems Warmup Practice Mixed Review Assessment
Problem 25

Find the point that partitions directed segment from (0,0) to (10,5) in ratio 1:4.

Problem 26

Find the point that partitions directed segment from (0,0) to (12,8) in ratio 2:1.

Problem 27

Find the point that partitions directed segment from (-2,4) to (6,0) in ratio 3:1.

Problem 28

Find the point that partitions directed segment from (1,1) to (9,5) in ratio 1:3.

Problem 29

Find the point that partitions directed segment from (0,0) to (8,4) in ratio 1:1.

Problem 30

Find the point that partitions directed segment from (1,2) to (7,8) in ratio 2:1.

Problem 31

Find the point that partitions directed segment from (-3,-1) to (5,7) in ratio 1:3.

Problem 32

Find the point that partitions directed segment from (0,5) to (10,0) in ratio 3:2.

Problem 33

Find the point that partitions directed segment from (-4,-6) to (4,2) in ratio 1:1.

Problem 34

Find the point that partitions directed segment from (2,3) to (12,13) in ratio 1:4.

Problem 35

Find the point that partitions directed segment from (-5,10) to (5,-10) in ratio 3:1.

Open in simulator
Problem 36

Find the point that partitions directed segment from (1,1) to (11,11) in ratio 2:3.

distinguish from A to B versus B to A.
12 problems Warmup Practice Mixed Review Assessment
Problem 37

Interpret direction for partition from A(0,0) to B(9,6) in ratio 1:2.

Problem 38

Interpret direction for partition from B(9,6) to A(0,0) in ratio 1:2.

Problem 39

Interpret direction for partition from P(-3,2) to Q(6,8) in ratio 2:1.

Problem 40

Interpret direction for partition from Q(6,8) to P(-3,2) in ratio 2:1.

Problem 41

Interpret direction for partition from C(1,1) to D(11,11) in ratio 1:4.

Open in simulator
Problem 42

Interpret direction for partition from D(11,11) to C(1,1) in ratio 1:4.

Problem 43

Interpret direction for partition from E(0,0) to F(10,-5) in ratio 3:2.

Problem 44

Interpret direction for partition from F(10,-5) to E(0,0) in ratio 3:2.

Problem 45

Interpret direction for partition from G(-8,-4) to H(2,6) in ratio 1:1.

Problem 46

Interpret direction for partition from H(2,6) to G(-8,-4) in ratio 1:1.

Problem 47

Interpret direction for partition from J(-10,20) to K(5,-10) in ratio 4:1.

Problem 48

Interpret direction for partition from K(5,-10) to J(-10,20) in ratio 4:1.

reverse weighted-average relationship.
12 problems Warmup Practice Mixed Review Assessment
Problem 49

Find the missing endpoint when endpoint A(0,0) and partition point M(3,4) are given with condition M is midpoint of AB.

Problem 50

Find the missing endpoint when endpoint A(0,0) and partition point P(2,1) are given with condition P is one-third from A to B.

Problem 51

Find the missing endpoint when endpoint B(9,6) and partition point P(6,4) are given with condition P is one-third from B to A.

Problem 52

Find the missing endpoint when endpoint A(-2,4) and partition point P(4,1) are given with condition P partitions AB in ratio 3:1.

Problem 53

Find the missing endpoint when endpoint A(1,2) and partition point P(3,4) are given with condition P is midpoint of AB.

Problem 54

Find the missing endpoint when endpoint A(-1,-1) and partition point P(1,3) are given with condition P partitions AB in ratio 2:1.

Open in simulator
Problem 55

Find the missing endpoint when endpoint B(10,10) and partition point P(7,7) are given with condition P is one-fourth from B to A.

Problem 56

Find the missing endpoint when endpoint A(5,-3) and partition point P(1,-1) are given with condition P partitions AB in ratio 1:3.

Problem 57

Find the missing endpoint when endpoint A(1,1) and partition point P(5,5) are given with condition P partitions AB in ratio 2:1.

Problem 58

Find the missing endpoint when endpoint B(-7,-7) and partition point P(-5,-5) are given with condition P partitions AB in ratio 3:1.

Problem 59

Find the missing endpoint when endpoint A(-3,-2) and partition point P(-1,0) are given with condition P is one-fifth from A to B.

Problem 60

Find the missing endpoint when endpoint B(10,-5) and partition point P(4,1) are given with condition P is two-thirds from B to A.

compare coordinate distances along segment.
12 problems Warmup Practice Mixed Review Assessment
Problem 61

Find the ratio in which point (3,2) partitions segment from (0,0) to (9,6).

Problem 62

Find the ratio in which point (6,4) partitions segment from (0,0) to (9,6).

Problem 63

Find the ratio in which point (4,1) partitions segment from (-2,4) to (6,0).

Problem 64

Find the ratio in which point (3,2) partitions segment from (1,1) to (9,5).

Problem 65

Find the ratio in which point (2,1) partitions segment from (0,0) to (8,4).

Problem 66

Find the ratio in which point (5,7) partitions segment from (1,1) to (7,10).

Problem 67

Find the ratio in which point (1,2) partitions segment from (-3,-2) to (5,6).

Problem 68

Find the ratio in which point (2,-7) partitions segment from (5,-1) to (1,-9).

Problem 69

Find the ratio in which point (8,16) partitions segment from (10,20) to (0,0).

Problem 70

Find the ratio in which point (8,16) partitions segment from (0,0) to (10,20).

Problem 71

Find the ratio in which point (-1,6) partitions segment from (-5,10) to (5,0).

Problem 72

Find the ratio in which point (-1,6) partitions segment from (5,0) to (-5,10).

Open in simulator
divide a route, design, or mixture line segment proportionally.
12 problems Warmup Practice Mixed Review Assessment
Problem 73

Use partition points in context A rest stop is one-third of the way from town A(0,0) to town B(9,6).

Problem 74

Use partition points in context A support is placed two-fifths of the way from (0,0) to (10,5).

Problem 75

Use partition points in context A weighted location is three-fourths of the way from (-2,4) to (6,0).

Problem 76

Use partition points in context A route marker is halfway from (1,-3) to (7,5).

Problem 77

Use partition points in context A landmark is one-fourth of the way from the origin (0,0) to (8,12).

Problem 78

Use partition points in context A sensor is placed two-thirds of the way from (1,2) to (7,8).

Problem 79

Use partition points in context A marker buoy is one-fifth of the way from (-5,10) to (5,0).

Problem 80

Use partition points in context A satellite receiver is three-fifths of the way from the origin (0,0) to (-10,-15).

Problem 81

Use partition points in context A central hub is halfway from (-4,-6) to (2,8).

Open in simulator
Problem 82

Use partition points in context A observation post is four-fifths of the way from (5,2) to (0,7).

Problem 83

Use partition points in context A junction point is one-third of the way from (-3,-3) to (6,6).

Problem 84

Use partition points in context A relay station is three-fourths of the way from (8,-4) to (0,4).

start at endpoint and add fraction of displacement.
12 problems Warmup Practice Mixed Review Assessment
Problem 85

Use vector form to find partition point from (0,0) to (10,5) at fraction 1/5.

Problem 86

Use vector form to find partition point from (-2,4) to (6,0) at fraction 3/4.

Problem 87

Use vector form to find partition point from (1,-1) to (7,11) at fraction 2/3.

Problem 88

Use vector form to find partition point from (3,5) to (-1,1) at fraction 1/2.

Problem 89

Use vector form to find partition point from (1,2) to (7,8) at fraction 1/3.

Problem 90

Use vector form to find partition point from (-5,-2) to (5,8) at fraction 1/2.

Problem 91

Use vector form to find partition point from (0,0) to (-9,-3) at fraction 2/3.

Problem 92

Use vector form to find partition point from (4,-3) to (-4,5) at fraction 1/4.

Problem 93

Use vector form to find partition point from (-10,10) to (0,0) at fraction 3/5.

Problem 94

Use vector form to find partition point from (2,7) to (8,1) at fraction 1/6.

Open in simulator
Problem 95

Use vector form to find partition point from (-3,-3) to (9,9) at fraction 5/6.

Problem 96

Use vector form to find partition point from (10,0) to (0,10) at fraction 1/5.

check collinearity and coordinate bounds.
12 problems Warmup Practice Mixed Review Assessment
Problem 97

Determine whether point (3,2) lies on segment from (0,0) to (9,6).

Problem 98

Determine whether point (12,8) lies on segment from (0,0) to (9,6).

Problem 99

Determine whether point (3,3) lies on segment from (0,0) to (9,6).

Problem 100

Determine whether point (4,1) lies on segment from (-2,4) to (6,0).

Open in simulator
Problem 101

Determine whether point (0,3) lies on segment from (-5,-2) to (5,8).

Problem 102

Determine whether point (1,1) lies on segment from (1,1) to (7,7).

Problem 103

Determine whether point (2,7) lies on segment from (2,1) to (2,5).

Problem 104

Determine whether point (-2,-2) lies on segment from (0,0) to (5,5).

Problem 105

Determine whether point (3,4) lies on segment from (1,3) to (5,3).

Problem 106

Determine whether point (2,3) lies on segment from (0,0) to (4,2).

Problem 107

Determine whether point (2,3) lies on segment from (0,5) to (5,0).

Problem 108

Determine whether point (6,-1) lies on segment from (0,5) to (5,0).

recognize point between endpoints versus outside.
12 problems Warmup Practice Mixed Review Assessment
Problem 109

Compare internal and external partition for point is between A and B.

Problem 110

Compare internal and external partition for point lies on line AB beyond B.

Problem 111

Compare internal and external partition for ratio 1:1 midpoint.

Problem 112

Compare internal and external partition for point has fraction 5/4 from A to B.

Problem 113

Compare internal and external partition for point P is on the line containing segment AB, such that P is not between A and B.

Problem 114

Compare internal and external partition for point C divides segment AB in the ratio 3:2.

Problem 115

Compare internal and external partition for point D is such that the ratio AD:DB is -1:3.

Problem 116

Compare internal and external partition for point E is located at 0.25 of the distance from A to B.

Problem 117

Compare internal and external partition for point F lies on the line AB such that A is between F and B.

Problem 118

Compare internal and external partition for point G divides the line segment AB externally in the ratio 2:1.

Problem 119

Compare internal and external partition for point H is such that the ratio AH:HB is 5:2.

Problem 120

Compare internal and external partition for point I is such that the ratio AI:IB is 3:-1.

Open in simulator
manipulate symbolic endpoints.
12 problems Warmup Practice Mixed Review Assessment
Problem 121

Apply partition formula with algebraic coordinates for point halfway from (0,0) to (2a,2b).

Problem 122

Apply partition formula with algebraic coordinates for point one-third from (0,0) to (3a,6b).

Problem 123

Apply partition formula with algebraic coordinates for point two-thirds from (x1,y1) to (x2,y2).

Problem 124

Apply partition formula with algebraic coordinates for midpoint of (a,b) and (c,d).

Problem 125

Apply partition formula with algebraic coordinates for point one-fourth from (0,0) to (4a,4b).

Problem 126

Apply partition formula with algebraic coordinates for point three-fourths from (x,y) to (X,Y).

Problem 127

Apply partition formula with algebraic coordinates for point one-fifth from (a,b) to (6a,11b).

Problem 128

Apply partition formula with algebraic coordinates for point two-fifths from (p,q) to (P,Q).

Problem 129

Apply partition formula with algebraic coordinates for point three-fifths from (0,0) to (5x,10y).

Problem 130

Apply partition formula with algebraic coordinates for point that divides the segment from (c,d) to (e,f) in the ratio 1:3.

Problem 131

Apply partition formula with algebraic coordinates for point that divides the segment from (u,v) to (w,z) in the ratio 2:3.

Open in simulator
Problem 132

Apply partition formula with algebraic coordinates for point four-fifths from (A,B) to (C,D).

catch reversed ratio, endpoint order, averaging, and arithmetic mistakes.
12 problems Warmup Practice Mixed Review Assessment
Problem 133

Correct the partition-ratio error: A student averages endpoints for a 1:2 partition.

Problem 134

Correct the partition-ratio error: A student reverses endpoints but keeps the same non-midpoint coordinate.

Problem 135

Correct the partition-ratio error: A student uses ratio m:n as m/n of the way from A to B.

Problem 136

Correct the partition-ratio error: A student ignores whether the point lies on the segment.

Problem 137

Correct the partition-ratio error: A student calculates a point partitioning segment AB in a 1:2 ratio from A as if it were a 2:1 ratio.

Problem 138

Correct the partition-ratio error: A student partitions segment AB in ratio 3:1 but applies the fraction 3/4 from point B instead of point A.

Problem 139

Correct the partition-ratio error: A student correctly sets up the partition formula for a 2:3 ratio but makes an arithmetic error in calculating the final coordinate.

Open in simulator
Problem 140

Correct the partition-ratio error: A student partitions segment AB in ratio 1:3 from A but uses the formula (1*A + 3*B)/(1+3).

Problem 141

Correct the partition-ratio error: A student partitions a segment in ratio 2:3 but uses 2/3 of the distance from A to B.

Problem 142

Correct the partition-ratio error: A student correctly finds the x-coordinate for a 2D partition but forgets to apply the ratio to the y-coordinate.

Problem 143

Correct the partition-ratio error: A student attempts to find a point that partitions AB in a 1:2 ratio by calculating 1*A + 2*B directly.

Problem 144

Correct the partition-ratio error: A student assumes a 1:1 partition means the point is 1 unit from A and 1 unit from B.