<span>To write an equation in slope-intercept form, given a graph of that equation, pick two points on the line and use them to find the slope. This is the value of m in the equation. Next, find the coordinates of the y -intercept--this should be of the form (0, b) . ... Therefore, the equation for this line is y = - x + 2 .</span>
Answer:
(4, -6), (-10, -6), (-3, 1), (-3, -13)
Step-by-step explanation:
If we add/subtract t to/from any x/y coordinate, we will form a line segment with length 7. Hence, (4, -6), (-10, -6), (-3, 1), (-3, -13).
Answer:
8 roses
Step-by-step explanation:
First start by subtracting $18.69 by $5.25 because you already know how much the carnations cost and how much the bouquet cost in all. When you subtract 18.69 by 5.25 you should get $13.44. If each rose cost $1.68 then divide 13.44 by 1.68 to get the amount of roses in the bouquet.
Answer:

Step-by-step explanation:
The question is not correct (particularly the expression for the area)
A=2lh+2wh
Now we are expected to solve for l, that is we are going to make l subject of the formula, we have
let us take the second term on the RHS to the LHS

we can now divide both sides by 2h we have

hence the expression for the length is 
<span>#include <iostream>
using namespace std;
class InventoryTag {
public:
InventoryTag();
int getQuantityRemaining() const;
void addInventory(int numItems);
private:
int quantityRemaining;
};
InventoryTag::InventoryTag() {
quantityRemaining = 0;
}
int InventoryTag::getQuantityRemaining() const {
return quantityRemaining;
}
void InventoryTag::addInventory(int numItems) {
if (numItems > 10) {
quantityRemaining = quantityRemaining + numItems;
}
}
int main() {
InventoryTag redSweater;
int sweaterShipment = 0;
int sweaterInventoryBefore = 0;
sweaterInventoryBefore = redSweater.getQuantityRemaining();
sweaterShipment = 25;
cout << "Beginning tests." << endl;
// FIXME add unit test for addInventory
/* Your solution goes here */
cout << "Tests complete." << endl;
return 0;
}</span>