Answer:
q = 15
Step-by-step explanation:
Given
f(x) = x² + px + q , then
f(3) = 3² + 3p + q = 6 , that is
9 + 3p + q = 6 ( subtract 9 from both sides )
3p + q = - 3 → (1)
---------------------------------------
f'(x) = 2x + p , then
f'(3) = 2(3) + p = 0, that is
6 + p = 0 ( subtract 6 from both sides )
p = - 6
Substitute p = - 6 into (1)
3(- 6) + q = - 3
- 18 + q = - 3 ( add 18 to both sides )
q = 15
It is 5 because you have to do 12 squared minus 13 squared and then square root that which equals 5
<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>
8x - 23 because you answer them until you have it all simplified
Answer:
234 hours
Step-by-step explanation:
To find the miles per hour, divide 72 by 2 and that equals 36. So 36 miles every hour. So then do 36 × 6 which equals 216. So this is 216 miles in 6 hours, but you still need 0.5 of an hour, so to find how far she travels in 0.5 of an hour, divide the amount she travels in one hour by two. So 36 ÷ 2 which equals 18. So she travels 18 miles every 0.5 of an hour. Then add 18 to the 216 which equals 234.
Hope This Helps!!!