feat: imported arguments to page

This commit is contained in:
Nick 2024-11-18 14:35:20 -06:00
parent 4fdb5f966f
commit 7f630108fa
27 changed files with 124 additions and 172 deletions

View file

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