document.write( "Question 169697: I need help. I have been trying to work this problem for several days and I am confused. This is the problem: The Johnson family is planning a weeklong vacation in California and needs to rent a car. They don't know exactly how far they will drive, but they estimate between 400 and 800 miles. Here are the options:
\n" );
document.write( "Weekly Rates: $329 per week, unlimited mileage or $219 per week, plus 12 cents per mile.
\n" );
document.write( "Daily Rates: $50 per day, unlimited mileage or $40 per day, plus 3 cents per mile.\r
\n" );
document.write( "\n" );
document.write( "Write the total week's rental car cost as a function of the number of miles driven in a week for each of the options. The costs of each option must also be represented on a data table and then graphed to show the cost of each option.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #125084 by gonzo(654)![]() ![]() ![]() You can put this solution on YOUR website! you have 4 options. \n" ); document.write( "you need to outline how much each option will cost per week. \n" ); document.write( "assume a week is 7 days without any other information to go on. \n" ); document.write( "they will travel between 400 and 800 miles (given). \n" ); document.write( "option 1: \n" ); document.write( "$329 + $0.0 per mile \n" ); document.write( "option 2: \n" ); document.write( "$219 + $.12 per mile \n" ); document.write( "option 3: \n" ); document.write( "7*$50 = $350 + $0.0 per mile \n" ); document.write( "option 4: \n" ); document.write( "7*$40 = $280 + $.03 per mile \n" ); document.write( "----- \n" ); document.write( "easiest way to do this is to create a function and graph it. \n" ); document.write( "i'll make the functions a,b,c,d \n" ); document.write( "a(x) = 329 + 0*x \n" ); document.write( "b(x) = 219 + .12*x \n" ); document.write( "c(x) = 350 + 0*x \n" ); document.write( "d(x) = 280 + .03*x \n" ); document.write( "graph of all 4 equations follows: \n" ); document.write( "look below the graph for further comments. \n" ); document.write( "negative numbers on the graph are only there so the x and y axis will show up. it won't otherwise. \n" ); document.write( "you can figure out which line is which by looking at the starting values. \n" ); document.write( "on this graph, the x axis is the number of miles traveled and the y axis is the cost. \n" ); document.write( " \n" ); document.write( "----- \n" ); document.write( "assuming you will not travel more than 800 miles, the two plans with 0 cost per mile are too expensive relative to the other plans. they only become competitive over 800 miles traveled. \n" ); document.write( "----- \n" ); document.write( "the cheapest plan in the beginning is the one that start off at $219. it's the best up to about 600 miles when the plan that starts off at $280 becomes cheaper. \n" ); document.write( "----- \n" ); document.write( "you could actually solve for the crossover points. \n" ); document.write( "take the plans that start off at $219 and $280. \n" ); document.write( "those are: \n" ); document.write( "b(x) = 219 + .12x \n" ); document.write( "d(x) = 280 + .03x \n" ); document.write( "just make them equal to each other and solve for x. \n" ); document.write( "219 + .12x = 280 + .03x \n" ); document.write( "subtract .03x from both sides: \n" ); document.write( "219 + .12x - .03x = 280 \n" ); document.write( "subtract 219 from both sides: \n" ); document.write( ".12x - .03x = 280 - 219 \n" ); document.write( "combine like terms: \n" ); document.write( ".09x = 61 \n" ); document.write( "divide both sides by .09: \n" ); document.write( "x = 61 / .09 = 677.777777...... miles. \n" ); document.write( "that's the crossover point when both these plans are equal. \n" ); document.write( "it's hard to see on the graph but it's in the general vicinity of 679 miles on the graph. \n" ); document.write( "----- \n" ); document.write( "if you want to plot data points, you may. \n" ); document.write( "takes miles from 400 to 800 in 50 mile chunks and solve for each equation at each of those points. \n" ); document.write( "for example: \n" ); document.write( "1 point is 400 miles \n" ); document.write( "at 400 miles you'll get these numbers: \n" ); document.write( "a(x) = 329 + 0*400 = 329 \n" ); document.write( "b(x) = 219 + .12*400 = 219 + 48 = 267 \n" ); document.write( "c(x) = 350 + 0*400 = 350 \n" ); document.write( "d(x) = 280 + .03*400 = 280 + 12 = 292 \n" ); document.write( "----- \n" ); document.write( "you would need to do this every 50 or 100 miles, whichever you prefer. since it's less work, do it every 100 miles. \n" ); document.write( "----- \n" ); document.write( "looking at the graph is easier. \n" ); document.write( "since they're all straight lines, you can actually plot at 400 miles and at 800 miles and draw a straight line in between. \n" ); document.write( "----- \n" ); document.write( " \n" ); document.write( " |