Finding the number of rentals and purchases given the revenue

  • Thread starter Eclair_de_XII
  • Start date
In summary, there were 4 million views of the movie online, of which 3 million were rentals and 1 million were purchases. The movie generated revenue of 19 million, of which 9 million came from rentals and 10 million came from purchases.
  • #1
Eclair_de_XII
1,083
91

Homework Statement


"A movie is released in both rentals and purchasable formats online. The total number of views is 4 million, but this includes both rentals and purchases. Assume that each rental brings $3, and each purchase yields $10. The total revenue from the release of the movie is 19 million. Find the number of rentals and purchases."

Homework Equations


Let ##r## denote the revenue from rentals and ##p## the revenue from purchases.
Furthermore, let ##a_1## denote the volume of rentals online and ##b_1## denote the volume of purchases online; let ##a_f## and ##b_f## denote the total volume of each for the movie.

The Attempt at a Solution


Then we have ##a_1r+b_1p=4_{10^6}## and ##a_fr+b_fp=19_{10^{19}}## and so...
##r⋅\begin{pmatrix}
a_1 \\
a_f\end{pmatrix}## + ##p⋅\begin{pmatrix}
b_1 \\
b_f\end{pmatrix}## = ##10^6⋅\begin{pmatrix}
4 \\
19\end{pmatrix}##

I tried putting it into an augmented matrix. But the problem is, that there are simply too many unknowns to solve for. I don't know what I'm doing wrong.
 
Last edited:
Physics news on Phys.org
  • #2
You know a lot of the variables and so they are not really unknown. Rather than trying to put it on matrix form, which you seem to struggle a bit with, write your equations on regular form first. Once you have them you can construct the corresponding matrix form.

Note: You only have two unknowns!
 
  • Like
Likes scottdave
  • #3
Are you assuming that a person who purchases can view multiple times? If these count as multiple views, then yes there is not enough information. Because some people may only watch a purchased video once, while others may view it 2 or 3 or more. You just are not told this information. In fact, rentals usually are good for a certain time period (24 or 48 hours, maybe). A rental person could view more than once. My suggestion is to make an assumption statement that a purchase equals 1 view, and a rental equals 1 view, then see about solving it with less variables.
 
  • #4
Eclair_de_XII said:
Then we have ##a_1r+b_1p=4_{10^6}## and ##a_fr+b_fp=19_{10^{19}}##
This didn't come out the way you planned. More likely, the following is probably a bit closer to what you were trying to say
##a_1r+b_1p=4 \cdot 10^6## and ##a_fr+b_fp=19 \cdot 10^6##
 
  • #5
Eclair_de_XII said:

Homework Statement


"A movie is released in both rentals and purchasable formats online. The total number of views is 4 million, but this includes both rentals and purchases. Assume that each rental brings $3, and each purchase yields $10. The total revenue from the release of the movie is 19 million. Find the number of rentals and purchases."

Homework Equations


Let ##r## denote the revenue from rentals and ##p## the revenue from purchases.
Furthermore, let ##a_1## denote the volume of rentals online and ##b_1## denote the volume of purchases online; let ##a_f## and ##b_f## denote the total volume of each for the movie.

The Attempt at a Solution


Then we have ##a_1r+b_1p=4_{10^6}## and ##a_fr+b_fp=19_{10^{19}}## and so...
##r⋅\begin{pmatrix}
a_1 \\
a_f\end{pmatrix}## + ##p⋅\begin{pmatrix}
b_1 \\
b_f\end{pmatrix}## = ##10^6⋅\begin{pmatrix}
4 \\
19\end{pmatrix}##

I tried putting it into an augmented matrix. But the problem is, that there are simply too many unknowns to solve for. I don't know what I'm doing wrong.

Generally in such problems (where the variables have direct "managerial" significance) you should choose as your variables the things about which a direct managerial decision is to be made. In this case a manager will not decide on the "revenues", but instead will decide on the numbers sold. From there, the revenues can be calculated.

So, if I (or my Operations Research students) were doing the problem we would choose variables R = number of rentals (in millions) and P = number of purchases (millions). You get two simple linear equations in R and P, which are essentially trivial to solve.

Whatever you do, avoid matrices in this problem as they will just get in the way and are completely unnecessary. They hide the simplicity of the problem.
 
  • #6
Ray Vickson said:
So, if I (or my Operations Research students) were doing the problem we would choose variables R = number of rentals (in millions) and P = number of purchases (millions). You get two simple linear equations in R and P, which are essentially trivial to solve.

Okay, so I have for total views: ##3R+10P=19##, and for online views, ##3(R-\delta R)+10(P-\delta P)=4##. I'm going to assume that ##R=3## and ##P=10## because that's the only way that the first equation will make sense (since ##3|(19-10⋅1)## and ##10|(19-3⋅3)##). So, I think I can solve for the variables in the second equation by substitution: ##3(3-\delta R)+10(1-\delta P)=4=9+10##, which implies that ##3\delta R+10\delta P=15##. Then I can say similarly, from my divisibility argument, that ##\delta R=5## and ##\delta P=0##. In total, I have ##∑R=8⋅10^6## rentals, and ##∑P=10^6## purchases?
 
  • #7
No. You cannot just randomly assume stuff about R and P. Also, you have not defined what you mean by ##\delta P##. If you put R = 3 and P = 10 your first equation reads 109 = 19 which is clearly nonsensical.
 
  • #8
Eclair_de_XII said:
In total, I have ##∑R=8⋅10^6## rentals, and ##∑P=10^6## purchases?
The problem stated that there were a total of 4 million, but your numbers adds up to 9 million?
Also, rereading your Relevant Equations, you need to have a1 + b1 = 4 x 106, since this is just a statement about the number of items, nothing about price or revenue. But I cannot figure out what you intend for af and bf to represent. What is the relationship of a1 to af, for example?
 
Last edited:
  • #9
...Wow, I realized that I completely misunderstood the problem. I misunderstood the "four million" to be four million dollars, and not four million views. Once again, I must apologize to everyone for my lack of reading comprehension. So anyway, let ##r## denote the number of rental-views in millions, and ##p## represent the number of purchase-views in millions. Then...

##r+p=4##
##3r+10p=19##

##p=4-r##
##3r+10(4-r)=19=3r+(40-10r)##
##-7r=-21##
##r=3## and ##p=1##

So there were three million rentals and one million purchases?
 
  • Like
Likes scottdave
  • #10
Eclair_de_XII said:
...Wow, I realized that I completely misunderstood the problem...
So there were three million rentals and one million purchases?
It happens. Yes that is what I got, as well.
 
  • #11
Thanks for bearing with me, everyone, and for your help...
 
  • Like
Likes scottdave

1. How do I calculate the number of rentals and purchases if I know the revenue?

To calculate the number of rentals and purchases, you will need to know the price of each rental and purchase. Then, you can divide the revenue by the price of each rental and purchase to determine the number of rentals and purchases.

2. How accurate is this method for finding the number of rentals and purchases?

This method is accurate as long as the prices of the rentals and purchases remain consistent. If there are price changes, the results may not be as accurate.

3. Can I use this method for any type of rental or purchase?

Yes, this method can be used for any type of rental or purchase as long as you have the revenue and price information.

4. What if there are multiple prices for rentals and purchases?

In this case, you will need to calculate the average price for rentals and purchases and use that value to determine the number of rentals and purchases.

5. Is there a more efficient way to find the number of rentals and purchases?

Depending on the data available, there may be alternative methods that can provide more accurate or efficient results. It is important to consider the specific situation and data before deciding on a method for finding the number of rentals and purchases.

Similar threads

  • Math Proof Training and Practice
2
Replies
67
Views
10K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
6
Views
3K
  • Earth Sciences
Replies
16
Views
4K
  • Beyond the Standard Models
Replies
13
Views
4K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
7
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
9
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
5
Views
3K
Back
Top