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

51 lines
2.3 KiB
Elm
Raw Normal View History

2024-11-16 17:48:59 -06:00
module Debate.Arguments.Politics.BoobyTrapPagers exposing (..)
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-16 17:48:59 -06:00
, propositionTitle = "Proposition"
, propositionSummary = "Summary"
2024-11-17 13:45:22 -06:00
, proofLink = "The Israeli pagers were not booby-traps."
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 13:45:22 -06:00
[ { definiendum = "B(x)"
, definiens = "(x) is a booby-trap"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "D(x)"
, definiens = "(x) is a device or material"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "K(x)"
, definiens = "(x) is designed, constructed, or adapted to kill or injure"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "F(x)"
, 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-17 13:45:22 -06:00
[ { premise = "For all x, x is a booby-trap if, and only if, x is a device or material AND x 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."
, notation = "(x(Bx(DxKxFx)))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "The Israeli pagers were devices or materials."
, notation = "(Dp)"
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."
, notation = "(Kp)"
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."
, notation = "(¬Fp)"
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."
, conclusionNotation = "(¬Bp)"
2024-11-16 17:48:59 -06:00
}
]
}