feat: added some arguments

This commit is contained in:
Nick 2024-11-17 01:28:10 -06:00
parent 1aa6599e57
commit aa7357d871
35 changed files with 187 additions and 208 deletions

51
frontend/src/Debate/Arguments/Nutrition/HealthyFood.elm Normal file → Executable file
View file

@ -5,50 +5,41 @@ import Debate.Types exposing (..)
argumentHealthyFood : Argument
argumentHealthyFood =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Argument For Healthy Food Substitution"
, propositionTitle = "Pepsi is healthy compared to leafy greens when trapped on a desert island."
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(~6x~6y~6z~6w(Pxyw~4Qxyzw)),(Qpdsl)%7C=(Ppdl)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "P(x,y,w)"
, definiens = "a given (x) is healthy compared to a given (w) when in a given (y)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "Q(x,y,z,w)"
, definiens = "when within a (y) the consumption of the given (x) is likely to increase the lag-time to the onset of (z) when replacing a given (w)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "p"
, definiens = "Pepsi"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "d"
, definiens = "trapped on a desert island"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "s"
, definiens = "starvation"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "l"
, definiens = "leafy greens"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { premise = "A given food is healthy compared to another given food when in a given context if, and only if, when within that context the consumption of that given food is likely to increase the lag-time to the onset of illness, disease, or infirmity when replacing a given other food."
, notation = "(xyzw(PxywQxyzw))"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "When trapped on a desert island the consumption of Pepsi increases the lag-time to the onset of starvation when replacing leafy greens."
, notation = "(Qpdsl)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, Pepsi is healthy compared to leafy greens when trapped on a desert island."
, conclusionNotation = "(Ppdl)"
}
]
}