feat: added arguments

This commit is contained in:
Nick 2024-11-17 13:45:22 -06:00
parent da420159f4
commit 2e1135e510
11 changed files with 259 additions and 335 deletions

View file

@ -5,50 +5,47 @@ import Debate.Types exposing (..)
argumentBoobyTrapPagers : Argument
argumentBoobyTrapPagers =
{ argumentTitle = "Title"
{ argumentTitle = "Argument Against Israeli Pagers as Booby-Traps"
, propositionTitle = "Proposition"
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "The Israeli pagers were not booby-traps."
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "B(x)"
, definiens = "(x) is a booby-trap"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "D(x)"
, definiens = "(x) is a device or material"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "K(x)"
, definiens = "(x) is designed, constructed, or adapted to kill or injure"
}
, { definiendum = ""
, definiens = ""
, { 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"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "x"
, definiens = "a device"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "p"
, definiens = "Israeli pagers"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { 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)))"
}
, { premise = ""
, notation = ""
, { premise = "The Israeli pagers were devices or materials."
, notation = "(Dp)"
}
, { premise = ""
, notation = ""
, { premise = "The Israeli pagers were designed, constructed, or adapted to kill or injure."
, notation = "(Kp)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { 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)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, the Israeli pagers were not booby-traps."
, conclusionNotation = "(¬Bp)"
}
]
}