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

62 lines
2.7 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.HealthyFood exposing (..)
2024-11-16 17:48:59 -06:00
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-18 21:51:19 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x~6y~6z~6w(Pxyw~4Qwxzy)),(Qdpsl)|=(Ppld)"
2024-11-22 15:10:32 -06:00
2024-11-26 04:32:11 -06:00
, argumentCertainty = 10
2024-11-28 03:51:30 -06:00
, argumentImage = "foodsubstitution"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 01:28:10 -06:00
[ { definiendum = "P(x,y,w)"
2024-11-19 01:12:55 -06:00
, definiens = "(x) is healthy compared to (w) when in (y)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "Q(x,y,z,w)"
2024-11-19 01:12:55 -06:00
, definiens = "when within a (y), the consumption of (x) is likely to increase the lag-time to the onset of (z) when replacing (w)"
2024-11-16 17:48:59 -06:00
}
2024-11-18 21:51:19 -06:00
, { definiendum = "x"
, definiens = "a food"
}
, { definiendum = "y"
, definiens = "a another food"
}
, { definiendum = "z"
, definiens = "an illness or disease"
}
, { definiendum = "w"
, definiens = "a context"
}
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-19 01:12:55 -06:00
[ { premise = "A given a 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 a food is likely to increase the lag-time to the onset of illness, disease, or infirmity when replacing a given other food."
2024-11-22 15:10:32 -06:00
, notation = "xyzw(PxywQwxzy)"
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."
2024-11-22 15:10:32 -06:00
, notation = "Qdpsl"
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."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "Ppld"
2024-11-16 17:48:59 -06:00
}
]
2024-11-18 21:51:19 -06:00
}