169k views
0 votes
An Artist has 600 inches of framing material to form a rectangular frame. The dimensions of the wall on which it will hang limit the frame's width to no more than 200 inches. The artist wants the length to be at least 2 times longer than the width. Write a system to represent this situation.

User Sen
by
6.2k points

1 Answer

4 votes

Answer:

  • 2(L +W) ≤ 600
  • W ≤ 200
  • L ≥ 2W

Explanation:

We assume the problem wording means the length is to be at least 2 times as long as the width. (Longer than usually refers to a difference, not a scale factor.)

If we let "W" and "L" represent the width and length, respectively, then we can translate the problem statement to ...

2(L + W) ≤ 600 . . . . . . the perimeter is twice the sum of length and width

W ≤ 200 . . . . . . . . . . . . the width is at most 200 inches

L ≥ 2W . . . . . . . . . . . . . the length is at least twice the width

User ForgetfulFellow
by
5.6k points