website/frontend/src/Debate/Arguments/Nutrition/HealthyFood.elm

46 lines
2.3 KiB
Elm
Raw Normal View History

2024-11-16 17:48:59 -06:00
module Debate.Arguments.Nutrition.HealthyFood exposing (..)
import Debate.Types exposing (..)
argumentHealthyFood : Argument
argumentHealthyFood =
2024-11-17 01:28:10 -06:00
{ argumentTitle = "Argument For Healthy Food Substitution"
, propositionTitle = "Pepsi is healthy compared to leafy greens when trapped on a desert island."
, propositionReductio = ""
, propositionSummary = "A food is considered healthier than another in a specific context if it increases the time before illness or disease sets in when replacing the other food. On a desert island, since Pepsi can extend the time before starvation compared to leafy greens, it is considered healthier than leafy greens in that context."
2024-11-17 01:28:10 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x~6y~6z~6w(Pxyw~4Qxyzw)),(Qpdsl)%7C=(Ppdl)"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 01:28:10 -06:00
[ { definiendum = "P(x,y,w)"
, definiens = "a given (x) is healthy compared to a given (w) when in a given (y)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { 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)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "p"
, definiens = "Pepsi"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "d"
, definiens = "trapped on a desert island"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "s"
, definiens = "starvation"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "l"
, definiens = "leafy greens"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 01:28:10 -06:00
[ { 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))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { 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)"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 01:28:10 -06:00
, conclusion = "Therefore, Pepsi is healthy compared to leafy greens when trapped on a desert island."
, conclusionNotation = "(Ppdl)"
2024-11-16 17:48:59 -06:00
}
]
}