I have this exercise. it involves Bayes' Theorem:
in an exam, $29\%$ of students chose to write essay $A,$ if a student chooses to write essay $A,$ then student had read author $X,$ and $P(X \text{ given } A) = 0.90.$
if a student chooses to write a different essay, then student didn't read author $X,$ and $P(\text{not }X \text{ given not }A) = 0.90.$
if we select randomly a student who read author $X,$ exercise asks to find $P(A \text{ given } X).$ (i.e a student who wrote essay $A$ given $X$.)
I've used Bayes' theorem: $$P(A|X) = \frac{P(X|A) * P(A)}{P(X|A) * P(A) + P(X|\text{not }A) * P(\text{not }A)}$$
the problem is in this part: $P(X|\text{not }A)$, I don't know how to find it.
I know these data: $P(A) = 0.29$, $P(\text{not }A) = 0.71$, $P(X|A) = 0.90$, $P(\text{not }X|\text{not }A) = 0.90$.
Hypothesis: I think $P(X|\text{not }A)$ is equal to $0.10,$ because $P(\text{not }X|\text{not }A) = 0.90$. But I'm trying to formalize that thought.
Your intuition is correct, for any events $A$ and $B$ with $P(B) \neq 0,$ we have $P(A | B) + P(\text{not } A | B) = 1.$
We can show this rather easily with the definition and the law of total probability: noting that $A \cap B$ and $\text{not } A \cap B$ must be disjoint, we have
$$\begin{align}P(A|B) + P(\text{not } A | B) & = \frac{P(A \cap B)}{P(B)} + \frac{P(\text{not } A \cap B)}{P(B)} \\ & = \frac{P\big((A \cap B) \cup (\text{not } A \cap B)\big)}{P(B)}\\ & = \frac{P\big((A \cup \text{not } A) \cap B\big)}{P(B)} \\ & = \frac{P(B)}{P(B)} = 1\end{align}$$
(I've also written in the steps which justify the law of total probability for your convenience: if you're comfortable with the fact that $P(A \cap B) + P(\text{not } A \cap B) = P(B)$ then you can skip the steps in the middle lines.)