(************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) (* false in Set. *) Require Export ClassicalDescription. Require Export RelationalChoice. Require ChoiceFacts. Theorem choice : (A:Type;B:Type;R: A->B->Prop) ((x:A)(EX y:B|(R x y))) -> (EX f:A->B | (x:A)(R x (f x))). Proof. Apply description_rel_choice_imp_funct_choice. Exact description. Exact relational_choice. Qed.