5/2x - y < 3
Add y
5/2x < 3 + y
Subtract 3
5/2x - 3 < y
y > 5/2x - 3
Graph "5/2x - 3" and shade the area that is above it
Answer:
1. t = 0.995 s
2. h = 15.92 ft
Step-by-step explanation:
First we have to look at the following formula
Vf = Vo + gt
then we work it to clear what we want
Vo + gt = Vf
gt = Vf - Vo
t = (Vf-Vo)/g
Now we have to complete the formula with the real data
Vo = 32 ft/s as the statement says
Vf = 0 because when it reaches its maximum point it will stop before starting to lower
g = -32,16 ft/s² it is a known constant, that we use it with the negative sign because it is in the opposite direction to ours
t = (0 ft/s - 32 ft/s) / -32,16 ft/s²
we solve and ...
t = 0.995 s
Now we will implement this result in the following formula to get the height at that time
h = (Vo - Vf) *t /2
h = (32 ft/s - 0 ft/s) * 0.995 s / 2
h = 32 ft/s * 0.995 s/2
h = 31.84 ft / 2
h = 15.92 ft
<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>
First find the amount at the end of the deferment period using the formula of the future value of a compound interest
A=8,960×(1+0.2735÷12)^(6)
A=10,257.25
Use the amount we found as the present value to find the monthly payment by using the formula of the present value of an annuity ordinary to get
PMT=10,257.25÷((1−(1+0.2735
÷12)^(−12×6))÷(0.2735÷12))
=291.27 ....Answer