Ask Question
21 December, 17:21

Give a recursive definition for the set Y of all positive multiples of 9. That is, Y = {9, 18, 27, 36, 45, 54, 63, 72, 81, 90, 99, ... }. Your definition should have a base case and a recursive part.

+4
Answers (1)
  1. 21 December, 17:35
    0
    Recursion means defining something, such as a function, in terms of itself. So Y = {9, 18, 27, 36, 45, 54, 63, 72, 81, 90, 99, ... }

    Let f (0) = 0

    So f (n + 1) = f (n) + 9

    f (1) = f (0) + 9 = 0 + 9 = 9

    f (2) = f (1) + 9 = 9 + 9 = 18
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Give a recursive definition for the set Y of all positive multiples of 9. That is, Y = {9, 18, 27, 36, 45, 54, 63, 72, 81, 90, 99, ... }. ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers