mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: lots of work
This commit is contained in:
parent
4a19d6eb06
commit
848038b62b
158 changed files with 1361 additions and 685 deletions
36
frontend/src/Debate/Arguments/Inferences/HealthPromotingFoods.elm
Executable file
36
frontend/src/Debate/Arguments/Inferences/HealthPromotingFoods.elm
Executable file
|
@ -0,0 +1,36 @@
|
|||
module Debate.Arguments.Inferences.HealthPromotingFoods exposing (..)
|
||||
|
||||
import Debate.Arguments.Types exposing (..)
|
||||
|
||||
argumentHealthPromotingFoods : Argument
|
||||
argumentHealthPromotingFoods =
|
||||
{ argumentTitle = "Argument for Food's Inherent Health Value"
|
||||
, propositionTitle = "All foods are definitionally health-promoting."
|
||||
, propositionReductio = ""
|
||||
, propositionSummary = "Given that food is, by its very definition, material that provides essential nutrients and energy to sustain bodily functions and growth, it follows that anything classified as food must be inherently health-promoting by its very nature."
|
||||
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P)|=(Q)"
|
||||
|
||||
, argumentCertainty = 10
|
||||
, argumentImage = "healthfoods"
|
||||
, definitionTable =
|
||||
[ { definiendum = "P"
|
||||
, definiens = "food is defined as material consisting essentially of protein, carbohydrate, and/or fat used in the body of an organism to sustain growth, repair, and vital processes and to furnish energy"
|
||||
}
|
||||
, { definiendum = "Q"
|
||||
, definiens = "all foods are definitionally health-promoting"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "If food is defined as material consisting essentially of protein, carbohydrate, and/or fat used in the body of an organism to sustain growth, repair, and vital processes and to furnish energy, then all foods are definitionally health-promoting."
|
||||
, notation = "P→Q"
|
||||
}
|
||||
, { premise = "Food is defined as material consisting essentially of protein, carbohydrate, and/or fat used in the body of an organism to sustain growth, repair, and vital processes and to furnish energy."
|
||||
, notation = "P"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, all foods are definitionally health-promoting."
|
||||
, conclusionNotation = "Q"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue