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

46 lines
1.6 KiB
Elm
Raw Normal View History

2024-11-18 14:35:20 -06:00
module Debate.Arguments.Philosophy.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"
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-17 13:45:22 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Fx~5Dx)),(Fg),(Dg~5T)%7C=(T)"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 13:45:22 -06:00
[ { definiendum = "F(x)"
, definiens = "(x) is finely tuned"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "D(x)"
, definiens = "(x) has a designer"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "T"
, definiens = "fine tuning is an infinitely regressive explanation for God"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "x"
, 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."
, notation = "(x(FxDx))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "God's constitution is finely tuned."
, notation = "(Fg)"
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."
, notation = "(DgT)"
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."
, conclusionNotation = "(T)"
2024-11-16 17:48:59 -06:00
}
]
}