
Christopher D. answered 06/08/14
Tutor
4.9
(383)
Programmer, Mathematician, Musician, and Educator
Your function would be c = 26 + 2*m, where c is the number of CDs you will own after m months.
Why: you already own 26 CDs, so 26 + more. How many more? Well 2 per month, which means (+ 2) for each month, e.g. 26 + (2 + 2 + 2) after three months, better written as 26 + (2*3).
The domain and range of you function are unclear based on the wording of the question (that is, do you buy the CDs semi-monthly, regularly? Did you start your 26 CD collection with the same pattern of purchasing? etc...) But we can at least say the domain is the whole numbers (or natural numbers including 0, or the non-negative integers), i.e. {0, 1, 2, 3, ...}. And the range is the even numbers greater then or equal to 26, i.e. {26, 28, 30, 32, ...}.
Why: the domain is the set of values (i.e. all the values) the independent variable m can be, and the range is the set of values the dependent variable c can be, considering the domain. That is, the range is the set of values you get if you pass every value in the domain through the function (i.e. evaluate the function at every value in the domain.)