SOLUTION: I知 doing homework concerning the rules of replacement. We are allowed to use 8 rules of implication (modus ponens, modus tollens, pure hypothetical syllogism, disjunctive syllogis

Algebra ->  Proofs -> SOLUTION: I知 doing homework concerning the rules of replacement. We are allowed to use 8 rules of implication (modus ponens, modus tollens, pure hypothetical syllogism, disjunctive syllogis      Log On


   



Question 1102118: I知 doing homework concerning the rules of replacement. We are allowed to use 8 rules of implication (modus ponens, modus tollens, pure hypothetical syllogism, disjunctive syllogism, constructive dilemma, simplification, conjunction, and addition) and 10 rules of replacement (De Morgan痴 rule, commutativity, associativity, distribution, double negation, transposition, material implication, material equivalence, exportation, and tautology). I have been stuck on the same proof for several days, trying different solutions for multiple hours each day. The problem is as follows:
Premise 1: If Q, then (A and V)
Premise 2: If (If not V, then C), then B
Conclusion: If Q, then B
Even a nudge in the right direction would be appreciated. Thank you.

Answer by jim_thompson5910(35256) About Me  (Show Source):
You can put this solution on YOUR website!

Notes about notation:
The tilde indicates "not". Example: ~A = not A
The arrow "->" without quotes is the implication "if..then..". For example writing "A -> B" means "if A, then B"
The ampersand & represents conjunction. Example: A & B = A and B
The vertical bar | represents disjunction "or". Example: A | B = A or B. I would use a lowercase 'v' for the disjunction operator, but I'm using a vertical bar to avoid confusion with the V already there


Here is one way to do the derivation:
NumberStatementLines UsedReason
1Q -> (A & V)
2(~V -> C) -> B
:.Q -> B
3~Q | (A & V)1Material Implication
4(~Q | A) & (~Q | V)3Distribution
5(Q -> A) & (Q -> V)4Material Implication
6(Q -> V) & (Q -> A)5Commutation
7Q -> V6Simplification
8~(~V -> C) | B2Material Implication
9~(V | C) | B8Material Implication
10(~V & ~C) | B9De Morgan's Law
11B | (~V & ~C)10Commutation
12(B | ~V) & (B | ~C)11Distribution
13B | ~V12Simplification
14~V | B13Commutation
15V -> B14Material Implication
16Q -> B7,15Hypothetical Syllogism