I'm given a prompt to determine the Probability of a single event.
Known:
P(A | B) = .7
P(A | ~B) = .3
P(B | A) = .6
I need to figure out P(A).
P(A|B) = (P(B | A)*P(A)) / ((P(B | A)*P(A)) + P(B | ~A)*P(~A))
I am a bit lost on how to derive P(B | ~A) and P(~A) from the given known elements.
I don't think P(B | ~A) = (1 - P(B | A)) but even if it is, how do I get P(~A)?

$P(A \cap B)=0.7 P(B)$ and $P(A \cap B)=0.6 P(A)$ from the first and the last equations. Let $P(A)=c$. Then we get $P(B)=\frac {0.6}{0.7}c$. Now $P(A\cap \sim B)=0.3 P(\sim B)=0.3 (1-P(B))=0.3 (1-\frac {0.6}{0.7}c)$ from the second equation. Also $P(A \cap B)=0.6 P(A)$. Add these two equations. You get $c=P(A)=P(A\cap \sim B)+P(A \cap B)=0.3 (1-\frac {0.6}{0.7}c)+0.6 c$. Now solve this equation for $c$.