I have the following theorem in Coq: Theorem T : exists x:A, P x.
I want to be able to use this value in a subsequent proof. I.E. I want to say something like: "let o
represent a value such that P o
. I know that o
exists by theorem T
..."
How would I do this? Thanks in advance!