feat: added arguments

This commit is contained in:
Nick 2024-11-17 13:45:22 -06:00
parent da420159f4
commit 2e1135e510
11 changed files with 259 additions and 335 deletions

View file

@ -5,50 +5,41 @@ import Debate.Types exposing (..)
argumentFineTuning : Argument
argumentFineTuning =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Fine Tuning Debunk"
, propositionTitle = "Fine tuning is an infinitely regressive explanation for God"
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(~6x(Fx~5Dx)),(Fg),(Dg~5T)%7C=(T)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "F(x)"
, definiens = "(x) is finely tuned"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "D(x)"
, definiens = "(x) has a designer"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "T"
, definiens = "fine tuning is an infinitely regressive explanation for God"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "x"
, definiens = "a thing"
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
, { definiendum = "g"
, definiens = "God's constitution"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { premise = "If something is finely tuned, then something has a designer."
, notation = "(x(FxDx))"
}
, { premise = ""
, notation = ""
, { premise = "God's constitution is finely tuned."
, notation = "(Fg)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "If God's constitution has a designer, then fine tuning is an infinitely regressive explanation for God."
, notation = "(DgT)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, fine tuning is an infinitely regressive explanation for God."
, conclusionNotation = "(T)"
}
]
}