write a recursive function named is decreasing that takes as its parameter a list of numbers. it should return true if the elements of the list are strictly decreasing but return false otherwise. strictly decreasing means that each element is less than the preceding one - not less than or equal. you can assume the array contains at least two elements.