website/frontend/src/Debate/Arguments/FineTuning.elm

49 lines
1.7 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.FineTuning exposing (..)
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentFineTuning : Argument
argumentFineTuning =
2024-11-17 13:45:22 -06:00
{ argumentTitle = "Fine Tuning Debunk"
, propositionTitle = "Fine tuning is an infinitely regressive explanation for God"
, propositionReductio = ""
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-18 18:01:32 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~5Qx)),(Pg),(Qg~5R)%7C=(R)"
2024-11-26 04:32:11 -06:00
, argumentCertainty = 10
, argumentImage = ""
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-18 18:01:32 -06:00
[ { definiendum = "P(x)"
2024-11-17 13:45:22 -06:00
, definiens = "(x) is finely tuned"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "Q(x)"
2024-11-17 13:45:22 -06:00
, definiens = "(x) has a designer"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "R"
2024-11-17 13:45:22 -06:00
, definiens = "fine tuning is an infinitely regressive explanation for God"
2024-11-16 17:48:59 -06:00
}
2024-11-26 04:32:11 -06:00
, { definiendum = "x"
2024-11-17 13:45:22 -06:00
, definiens = "a thing"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "g"
, definiens = "God's constitution"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 13:45:22 -06:00
[ { premise = "If something is finely tuned, then something has a designer."
2024-11-22 15:10:32 -06:00
, notation = "x(PxQx)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "God's constitution is finely tuned."
2024-11-22 15:10:32 -06:00
, notation = "Pg"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "If God's constitution has a designer, then fine tuning is an infinitely regressive explanation for God."
2024-11-22 15:10:32 -06:00
, notation = "QgR"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 13:45:22 -06:00
, conclusion = "Therefore, fine tuning is an infinitely regressive explanation for God."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "R"
2024-11-16 17:48:59 -06:00
}
]
}