Category Theory
Zulip Server
Archive

You're reading the public-facing archive of the Category Theory Zulip server.
To join the server you need an invite. Anybody can get an invite by contacting Matteo Capucci at name dot surname at gmail dot com.
For all things related to this archive refer to the same person.


Stream: deprecated: mathematics

Topic: Analyzing Logic of Statements


view this post on Zulip Jacob Zelko (May 25 2023 at 17:49):

Hi folks, making good progress with How To Prove It! I was asked an interesting problem that Ifound rather confusing which was the following:

Analyze the logical forms of the following statements:

1) 3 is a common divisor of 6, 9, and 15.

2) x and y are men, and either x is taller than y or y is taller than x.

For 1), I found this the harder of the two and tried this approach: I said to let AA represent the statement 3 is a divisor and BB represent 6 is divisible by 3, CC represent 9 is divisible by 3, and 15 is divisible by 3. Then, I said the logical form is A(BCD)A \land (B \land C \land D). I didn't really like this answer as it feels contrived but I also didn't quite know how to approach this to make sure I capture the correct relationships.

For 2), I had a much easier time. I said let M(x)M(x) represent x is a man and T(a,b)T(a, b) represent a is taller than b. For the logical representation, I said, (M(x)M(y))(T(x,y)T(y,x))(M(x) \land M(y)) \land (T(x, y) \lor T(y, x)). I felt better about this answer as I'd read it back the same way as the original statement.

Does it seem like I am on the right track? Thanks all!

view this post on Zulip David Egolf (May 25 2023 at 19:02):

For (1), I'd wonder if it could be helpful to let D(x,y)D(x,y) mean "xx is a divisor of yy". By the way, I don't really understand what you mean by your AA "3 is a divisor".

view this post on Zulip Jacob Zelko (May 25 2023 at 20:50):

You know, I actually did try that but I found it additionally confusing. Let me share what I wrote in a moment @David Egolf

view this post on Zulip Jacob Zelko (May 25 2023 at 21:37):

Here is more of what I put:

D(x)D(x) which represents x is divisible by 3. So then I could say the statement: D(6)D(9)D(15)D(6) \land D(9) \land D(15). The only problem is is that I get confused by how I should capture the statement that 3 is the common divisor of these statements unless I am doing so implicitly with how I formulated the statement. Any thoughts?

view this post on Zulip David Egolf (May 25 2023 at 21:47):

In words, D(6)D(9)D(15)D(6) \land D(9) \land D(15) says "6 is divisible by 3, and 9 is divisible by 3, and 15 is divisible by 3". I think that's what it means to say that 3 is a common divisor of 6, 9, and 15.

view this post on Zulip Jacob Zelko (May 25 2023 at 21:57):

Ah cool! That's what I was initially trying but it just felt so clunky. Thanks for the sanity check/second opinion here @David Egolf !

view this post on Zulip Spencer Breiner (May 25 2023 at 22:27):

If you wanted to emphasize the commonality, you could use an existential quantifier:
x.(x6)(x9)(x15)(x=3)\exists x. (x|6) \wedge (x|9) \wedge (x|15) \wedge (x=3)

view this post on Zulip Spencer Breiner (May 25 2023 at 22:28):

The formulas are equivalent, but this is arguably a bit closer to the intensional meaning of the sentence.