document.write( "Question 1177150: net profits XYZ Company were two-sevenths of revenue. If the company declared a dividend of 1 280 000 and five-ninths of the net profit was retained in the company, what was last year's revenue? \n" ); document.write( "
Algebra.Com's Answer #850511 by CPhill(1959)![]() ![]() You can put this solution on YOUR website! I'll calculate the revenue of XYZ Company. \n" ); document.write( "```python?code_reference&code_event_index=3 \n" ); document.write( "# Define the dividend \n" ); document.write( "dividend = 1280000\r \n" ); document.write( "\n" ); document.write( "# Calculate the net profit \n" ); document.write( "net_profit = dividend / (4/9)\r \n" ); document.write( "\n" ); document.write( "# Calculate the revenue \n" ); document.write( "revenue = net_profit * (7/2)\r \n" ); document.write( "\n" ); document.write( "# Display the revenue \n" ); document.write( "print(f\"The revenue of XYZ Company is: ${revenue:.2f}\") \n" ); document.write( "``` \n" ); document.write( "```text?code_stdout&code_event_index=3 \n" ); document.write( "The revenue of XYZ Company is: $10080000.00\r \n" ); document.write( "\n" ); document.write( "``` \n" ); document.write( "The revenue of XYZ Company is: $10,080,000.00.\r \n" ); document.write( "\n" ); document.write( "Let me know if you need help with any other calculations! \n" ); document.write( " |