Answer:
The operation that will cancel out division is multiplication.
Step-by-step explanation:
For example:
*in order to solve for x, and get the upper equation without division, you must multiply by the negative reciprocal*


*to get x alone, we must subtract 4 from both sides*


<span>Well 68/80 as a percent is 85 % .I got that by dividing 68 by 80 and them multiplying by 100. 100-85= 15. So therefore the dress decreased in price by 15%. </span>
<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>
Answer:
The solution of this system of equations is (3 , -8)
Step-by-step explanation:
The given system is
x + 2y = -13
12x + 5y = -4
We make x the subject of the first equation and put it into the second:

We put this expression for x into the second equation
12(-13-2y)+5y=-4
-156-24y+5y=-4
-24y+5y=-4+156
-19y=152
y=-8
We substitute y=-8 into x=-13-2y to get:

The solution of this system of equations is (3 , -8)