mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 20:35:13 -05:00
feat: added arguments
This commit is contained in:
parent
600bfc267c
commit
627c01538d
10 changed files with 364 additions and 0 deletions
|
@ -0,0 +1,45 @@
|
|||
module Debate.Arguments.Nutrition.PlantBasedCVDReversal exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentPlantBasedCVDReversal : Argument
|
||||
argumentPlantBasedCVDReversal =
|
||||
{ argumentTitle = "Argument Against Plant-Based Diets Reversing Heart Disease"
|
||||
, propositionTitle = "Plant-based diets do not appear to clinically reverse atherosclerosis."
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(P~1~3Q~5~3R),(P),(~3Q)|=(~3R)"
|
||||
, definitionTable =
|
||||
[ { definiendum = "P"
|
||||
, definiens = "there are established definitions for atherosclerosis reversal in the domain of cardiology"
|
||||
}
|
||||
, { definiendum = "Q"
|
||||
, definiens = "current research on plant-based diets and atherosclerosis reversal satisfy the definitions for atherosclerosis reversal in the domain of cardiology"
|
||||
}
|
||||
, { definiendum = "R"
|
||||
, definiens = "plant-based diets do not appear to clinically reverse atherosclerosis"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "If there are established definitions for atherosclerosis reversal in the domain of cardiology and current research on plant-based diets and atherosclerosis reversal do not satisfy the definitions for atherosclerosis reversal in the domain of cardiology, then plant-based diets do not appear to clinically reverse atherosclerosis."
|
||||
, notation = "(P∧¬Q→¬R)"
|
||||
}
|
||||
, { premise = "There are established definitions for atherosclerosis reversal in the domain of cardiology."
|
||||
, notation = "(P)"
|
||||
}
|
||||
, { premise = "Current research on plant-based diets and atherosclerosis reversal do not satisfy the definitions for atherosclerosis reversal in the domain of cardiology."
|
||||
, notation = "(¬Q)"
|
||||
}
|
||||
, { premise = ""
|
||||
, notation = ""
|
||||
}
|
||||
, { premise = ""
|
||||
, notation = ""
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, plant-based diets do not appear to clinically reverse atherosclerosis."
|
||||
, conclusionNotation = "(∴¬R)"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue