Answer:
.
Step-by-step explanation:
We have been given that Nike reported a profit of $28,951,000 for one quarter (3 months), a profit of $20,570,000 for the second quarter, a profit of $15,342,000 the third quarter, and a loss of $48,037,000 for the fourth quarter.
To find the net profit for year, we will subtract the loss in the 4th quarter from the sum of profit in 3 quarters as:



Therefore, the net profit for the year was
.
Answer:
![x=(243)log_{\frac{1}{81}}[(\frac{1}{81})-1]](https://tex.z-dn.net/?f=x%3D%28243%29log_%7B%5Cfrac%7B1%7D%7B81%7D%7D%5B%28%5Cfrac%7B1%7D%7B81%7D%29-1%5D)
Step-by-step explanation:
you have the following formula:

To solve this equation you use the following properties:

Thne, by using this propwerty in the equation (1) you obtain for x
![log_{(\frac{1}{81})}(\frac{1}{81})^{\frac{x}{243}}=log_{\frac{1}{81}}[(\frac{1}{81})-1]\\\\\frac{x}{243}=log_{\frac{1}{81}}[(\frac{1}{81})-1]\\\\x=(243)log_{\frac{1}{81}}[(\frac{1}{81})-1]](https://tex.z-dn.net/?f=log_%7B%28%5Cfrac%7B1%7D%7B81%7D%29%7D%28%5Cfrac%7B1%7D%7B81%7D%29%5E%7B%5Cfrac%7Bx%7D%7B243%7D%7D%3Dlog_%7B%5Cfrac%7B1%7D%7B81%7D%7D%5B%28%5Cfrac%7B1%7D%7B81%7D%29-1%5D%5C%5C%5C%5C%5Cfrac%7Bx%7D%7B243%7D%3Dlog_%7B%5Cfrac%7B1%7D%7B81%7D%7D%5B%28%5Cfrac%7B1%7D%7B81%7D%29-1%5D%5C%5C%5C%5Cx%3D%28243%29log_%7B%5Cfrac%7B1%7D%7B81%7D%7D%5B%28%5Cfrac%7B1%7D%7B81%7D%29-1%5D)
He might be 6 now.
hope this helped :)
plzz tell me if I was wrong
Answer:
C
Step-by-step explanation:
17.156 is the irrational number as it is terminating(means it ends)
Rest all are irrational
<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>