fun mystery x = ((fn y => y-1) x) * ((fn y => y+1) x) + 1Answer the following sub-questions:
fun triple g z = (1+1) * g z
For example, notDivisor(2, 5) should return true and notDivisor(3, 9) should return false
For example, test_d(2,5,13) is true and test_d(5, 12, 22) is false (since 11 divides 22).
You must decide how to handle the case when a > b.
For example, prime(12) should return false and prime(13) should return true.