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

55 lines
2.4 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.BoobyTrapPagers exposing (..)
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentBoobyTrapPagers : Argument
argumentBoobyTrapPagers =
2024-11-17 13:45:22 -06:00
{ argumentTitle = "Argument Against Israeli Pagers as Booby-Traps"
2024-11-18 18:01:32 -06:00
, propositionTitle = "The Israeli pagers were not booby-traps."
, 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~4(Qx~1Rx~1Sx))),(Qp),(Rp),(~3Sp)|=(~3Pp)"
2024-11-22 15:10:32 -06:00
2024-11-26 04:32:11 -06:00
, argumentCertainty = 4
2024-11-28 03:51:30 -06:00
, argumentImage = "pagers"
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 a booby-trap"
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) is a device or material"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "R(x)"
2024-11-17 13:45:22 -06:00
, definiens = "(x) is designed, constructed, or adapted to kill or injure"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "S(x)"
2024-11-17 13:45:22 -06:00
, definiens = "(x) functions (as a device or material that was designed, constructed, or adapted to kill or injure) when a person disturbs or approaches an apparently safe act"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "x"
, definiens = "a device"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "p"
, definiens = "Israeli pagers"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-19 01:12:55 -06:00
[ { premise = "For all things, a device is a booby-trap if, and only if, the device is a device or material AND the device is designed, constructed, or adapted to kill or injure AND x functions (as a device or material that was designed, constructed, or adapted to kill or injure) when a person disturbs or approaches an apparently safe act."
2024-11-22 15:10:32 -06:00
, notation = "x(Px(QxRxSx))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "The Israeli pagers were devices or materials."
2024-11-22 15:10:32 -06:00
, notation = "Qp"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "The Israeli pagers were designed, constructed, or adapted to kill or injure."
2024-11-22 15:10:32 -06:00
, notation = "Rp"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "The Israeli pagers did not function (as devices or materials that were designed, constructed, or adapted to kill or injure) when a person disturbs or approaches an apparently safe act."
2024-11-22 15:10:32 -06:00
, notation = "¬Sp"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 13:45:22 -06:00
, conclusion = "Therefore, the Israeli pagers were not booby-traps."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "¬Pp"
2024-11-16 17:48:59 -06:00
}
]
}