Ugh. My problem with analysis is definitely that I just end up thinking about a problem for too long and getting lost in my own head. I almost made it all the way through a homework assignment before that happened this time, but one problem escaped me. I'm going to take a break from working on it to do other work and hopefully come back to it suddenly able to ace it, but in case I can't then I'll put it here and see if anyone wants to push me in the right direction.
I don't know what to do for "etc" because there are a lot of proof methods, but for the other two...
Direct Proof:
This is a proof done simply by combining established facts to reach a conclusion of truth or falsehood. A common example would give you two facts or truths:
1) If P is true, then Q is true
2) P is true.
And ask you to prove that Q is true.
Here's an example with words.
(1) If we have chocolate, we can make cookies.
(2) We have chocolate.
(3) Therefore, we can make cookies.
Lines (1) and (2) would be given to you. They would come from definitions or theorems. Here's a math example.
Prove that if two integers are odd, then their sum is even.
(1) x is an odd integer if and only if x=(2n+1) for some integer n. This is the definition of an odd integer.
(2) w is an even integer if and only if w=2j for some integer j. This is the definition of an even integer.
(3) The sum of integers is an integer. This is a property of the set of integers.
(4) Take any two odd integers y and z. Then we can say y=(2k+1) and z=(2m+1) for some integers m and k. Here we're simply using our given definition of an odd integer.
(5) Then y+z=(2k+1)+(2m+1)=2k+2m+2=2(k+m+1).
(6) Since k, m, and 1 are all integers, k+m+1 must be an integer. We know this because the sum of integers is also an integer.
(7) Since k+m+1 is an integer and y+z=2(k+m+1), y+z is an even integer.
Here, lines (1)-(3) were given to us. They are definitions and known properties of the sets we are dealing with. Lines (4)-(7) were the direct proof: combining those definitions to reach our desired conclusion.
Contrapositive:
For a contrapositive proof, you're largely reaching the same goal of a direct proof by traveling a different path. You'll be asked to prove some statement "If P is true, then Q is true." But you won't do this by combining the statement "P is true" with other facts to obtain "Q is true." Instead, you begin with the statement "Q is false" and use that to prove that "P is false."
We can do the proof this way because "If Q is false then P is false" and "If P is true then Q is true" are logically equivalent statements. To put it into a word problem: "If the pencil is mine, then it is purple" is equivalent to "If the pencil is not purple, then it is not mine."
Word problems help me less when it comes to contrapositive though, I've always found it easier to understand the math. So let's try a math example.
Prove that if the sum of two integers x and y is even, then they are either both even or both odd.
(1) The contrapositive of this is "If two integers x and y are not either both odd or both even (meaning one is odd and the other is even), then their sum is odd."
(2) Next we assume that of the two integers x and y, one is odd and the other is even. Let's say x is odd and y is even.
(3) If x is odd, then x=(2k+1) for some integer k.
(4) If y is even, then y=(2n) for some integer n.
(5) Then x+y=(2k+1)+(2n)=2k+2n+1=2(k+n)+1.
(6) Since k and n are both integers and x+y=2(k+n)+1, x+y is an odd integer..
(7) The contrapositive of our original statement is true. Therefore, our original statement is true.
Hope that helps some. If you're looking for more clarification, wikipedia is often a surprisingly helpful resource for logic. You could start at the article on
direct proofs and go from there to all the kinds of indirect proofs, like proof by contrapositive.