Hi @Pacheco,
You’ve made a really good start with these. Here are some comments to help you improve your solutions and develop them further:
Minimum
This is pretty much complete 
Instead of a chain of if
statements, which is used when more than one of the branches can be executed, your program needs conditional execution where each of the branches is mutually exclusive (i.e. only one of the branches will be executed). This is the most common type of conditional execution, and it requires if...else
(or in your program if...else if...else
) statements. As the final else
statement is the default (i.e. handling all cases that have evaluated to false in each of the preceding statements), this means that it doesn’t need a condition.
(Note: this same point also applies to your conditional execution in the second exercise, Recursion)
Recursion
You haven’t understood how to code the actual recursion. Instead of printing the calculation that needs to be performed before starting the next recursion (e.g. 11 - 2 = 9), you need to call the function again with the answer to this calculation (i.e. 9, in this example). The function is then continuously called until the answer is either 0 or 1. We only want to print true or false, depending on whether our input number is even or odd. By reducing the number by 2 on each recursive loop, even numbers will reduce to 0, whereas odd numbers will reduce to 1.
The other problem with your code, is that you are printing false for all negative numbers. But negative numbers can also be even or odd. So in this branch you want to call the function again recursively, but with the negative number converted to positive. This way, when the function body is executed again, it will be treated like a positive number, and so everything I’ve commented on above will now apply.
Have another go, and if you find it too difficult, have a read of this post, which includes a summary of my top tips for approaching the course book exercises if you’re finding yourself struggling to do them on your own. You can also apply these approaches to the exercise Counting Beans and hopefully that will help you to gradually understand it.
Good luck with this, and just let us know if you have any questions or need any help.
Keep on learning 