MichaelBoolin3737 MichaelBoolin3737 19-03-2024 Mathematics contestada Using recursion, define the multiplication function * given by g = x * y. a. g = x * (y-1) + x b. g = x + (x-1) * y c. g = x + x * (y-1) d. g = x * (y-1) + x * y