I am not certain of my sol'n , but this is what I think :
Let E represent the event that "In a hand of 5 cards from a 52 card pack (order doesn't matter), that the hand will contain the ace of spades GIVEN that there is at least one ace in the hand"
Let P(E) represent the probability that event E happens
Now since I donno how to use the Latex formatting , I am goin to use C(n,k) to represent the no of ways to select k things from a collection of n things.
i.e. C(n,k) = n! / { ( n-k)! * k! }
Now ,
P(E) = P(E given there is exactly one ace ) * P( there is exactly one ace given there is at least one ace)
+
P(E given there are exactly 2 aces ) * P( there are exactly 2 aces given there is at least one ace)
+
P(E given there are exactly 3 aces ) * P( there are exactly 3 aces given there is at least one ace)
+
P(E given there are exactly 4 aces ) * P( there are exactly 4 aces given there is at least one ace)
Now ,
P(E given there is exactly one ace ) = 1/4
P( there is exactly one ace given there is at least one ace) = C(3,0) * C(48,4) / C(51,4)
Similarly ,
P(E given there are exactly 2 aces ) = 2/4
P( there is exactly one ace given there is at least one ace) = c(3,1) * C(48,3) / C(51,4)
and so on ,
Thus :
P(E) = (1/4) * { C(3,0) * C(48,4) / C(51,4) } + (2/4) * { C(3,1) * C(48,3) / C(51,4) }
+ (3/4) * { C(3,2) * C(48,1) / C(51,4) } + (4/4) * { C(3,3) * C(48,0) / C(51,4) }