First, let's define the curried function `mult` in terms of lambda expressions:
```
mult = \x -> (\y -> (\z -> x * y * z))
```
Here, `\x` represents the first argument of `mult`, `\y` represents the second argument, and `\z` represents the third argument.
Show more…