• Visit the 2024 QuantNet ranking of the Best UK Quant MSc Programs.

  • C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Proving a statement

Joined
4/14/12
Messages
90
Points
18
To prove the statement “if all A are B, then all C are D”, it suffices to show which of the following:

A. All A are D, and all B are C
B. All A are C, and all D are B
C. All C are A, and all B are D
D. All B are C, and all A are D

I'm confused by this problem. I tried all 4 answer choices and it seems to me that only C comes close to the correct answer. But if C is correct, then we have "all(all(all C)) are D", not "all C are D" (!?). Can someone help me solve it?
 
If both assertions of choice C hold and the hypothesis of the statement is assumed, then together you have

C subset of A, A subset of B, B subset of D.

That the subset relation is transitive then establishes the conclusion. I suppose that correlates with your nested arrangement, working from the innermost set (all C) outward.
 
If both assertions of choice C hold and the hypothesis of the statement is assumed, then together you have

C subset of A, A subset of B, B subset of D.

That the subset relation is transitive then establishes the conclusion. I suppose that correlates with your nested arrangement, working from the innermost set (all C) outward.

Great explanation! I like your interpretation of "all A are B" as subset of a set. Many thanks:)
 
Back
Top