document.write( "Question 93548: Need to find the average of a percentage based on other variables:\r
\n" );
document.write( "\n" );
document.write( "I have 1 cup of apple juice that is 50% apple juice.
\n" );
document.write( "I want to add 2 more cups of apple juice to the 1 cup, but it is 75% apple juice.
\n" );
document.write( "What is the average percent of apple juice when I add it to the 1 cup\r
\n" );
document.write( "\n" );
document.write( "a=1 cup
\n" );
document.write( "(a's percentage) a1=50%
\n" );
document.write( "b=3 cups
\n" );
document.write( "(b's percentage) b1=75%\r
\n" );
document.write( "\n" );
document.write( "IF a=b then you would add a1 + b1 then divide by 2 (62.5%)
\n" );
document.write( "if a1=b1 then the percent of apple juice would be the same \n" );
document.write( "
Algebra.Com's Answer #68132 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! I have 1 cup of apple juice that is 50% apple juice. \n" ); document.write( "I want to add 2 more cups of apple juice to the 1 cup, but it is 75% apple juice. \n" ); document.write( "What is the average percent of apple juice when I add it to the 1 cup \n" ); document.write( "--------------- \n" ); document.write( "50% juice DATA: \n" ); document.write( "Amount = 1 cup ; amt of active ingredient = 0.5 cup \n" ); document.write( "-------------- \n" ); document.write( "75% juice DATA; \n" ); document.write( "Amount = 2 cups ; amt of active ingredient = (3/4)*2 = 1.5 cup \n" ); document.write( "---------------- \n" ); document.write( "Mixture DATA where % is unknown: \n" ); document.write( "Amount = 3 cups ; amt of active ingredient = 3x \n" ); document.write( "----------------- \n" ); document.write( "EQUATION: \n" ); document.write( "active + active = active \n" ); document.write( "0.5 + 1.5 = 3x \n" ); document.write( "2 = 3x \n" ); document.write( "x = 2/3 or 66.67 % \n" ); document.write( "================ \n" ); document.write( "You end up with a 66.67% mixture. \n" ); document.write( "=============== \n" ); document.write( "cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |