My friend @riir52520747 made a Argument against The Trinity, Here goes:

P1) God is triune. (Assumption for Reductio)
P2) The Son, The Father, and Holy Spirit are not identical to each other. (From, "Trinity")
P3) The Son, The Father, The Holy Spirit are each God (From, Trinity)

P4) Only The Son has the essential property of being identical to the "Son." (From the definition of "Essential Property", and Haecceity.)
P5) Only The Father has the essential property of being Identical to the Father.
P6) Only the Holy Spirit has the essential property of being identical to the Holy Spirit.
C1) Therefore, each member of the trinity are identical in quiddity, but still differs haeccetistically. (From 3, 4, 5, 6.)
C2) Therefore, each member of the trinity is essentially non-identical. (From, "Haecceity")
C3) Therefore, there are 3 distinct entities which each have the property of "Being God"
C4) Therefore, There are 3 Gods.
C5) The Trinity affirms there is only one God.
C6) Therefore, the Trinity is contradictory.
C7) Therefore, God cannot be triune.

Justification for 4, 5 and 6:
An essential property, is simply going to: be A property P is essential to an individual x iff it is not possible that x exist and fail to bear property P. We do not mean essential property in the medieval sense, and even if we did we can still derive this notion of essential…
…identity/haecceity very easily.

Now clearly, each member of the trinity is going to be essentially identical to *themselves*. And such a property, is strictly going to be identical to what we would call a "Haecceity."
Now that each member differs haeccetistically, they're going to be essentially non-identical. As X and Y are going to be distinct iff there is some property they don't share given the identity of indiscernibles + the indiscernibility of Identicals.
Now that we've established that each person of the trinity differs in such a manner, they're going to be distinct in such a way that we no longer have some "3 in 1" notion we can work off, as we just introduced a principle of individuation, namely their haecceities, which…
…treats them as wholly seperate.

Then, if all these persons differ in this manner, and each are identical to God, then we have that there are 3 Gods. Blatant Polytheism. And clearly, a Contradiction.
This argument is specifically strong, because trinitarians can no longer appeal to Relative Identity, or adopt say, a thomistic account of the Trinity.
They're going to need to introduce a completely different definition of essential property, and explain why some individual X's haecceity cannot be easily derived from such a definition.
Note that this definition was pioneered by Alvin Plantinga, and is generally accepted among philosophers. So it's going to be very hard to see how someone would attempt doing that.

END

More from Life

You May Also Like

A brief analysis and comparison of the CSS for Twitter's PWA vs Twitter's legacy desktop website. The difference is dramatic and I'll touch on some reasons why.

Legacy site *downloads* ~630 KB CSS per theme and writing direction.

6,769 rules
9,252 selectors
16.7k declarations
3,370 unique declarations
44 media queries
36 unique colors
50 unique background colors
46 unique font sizes
39 unique z-indices

https://t.co/qyl4Bt1i5x


PWA *incrementally generates* ~30 KB CSS that handles all themes and writing directions.

735 rules
740 selectors
757 declarations
730 unique declarations
0 media queries
11 unique colors
32 unique background colors
15 unique font sizes
7 unique z-indices

https://t.co/w7oNG5KUkJ


The legacy site's CSS is what happens when hundreds of people directly write CSS over many years. Specificity wars, redundancy, a house of cards that can't be fixed. The result is extremely inefficient and error-prone styling that punishes users and developers.

The PWA's CSS is generated on-demand by a JS framework that manages styles and outputs "atomic CSS". The framework can enforce strict constraints and perform optimisations, which is why the CSS is so much smaller and safer. Style conflicts and unbounded CSS growth are avoided.