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

41 lines
2.3 KiB
Elm
Raw Normal View History

2024-11-18 00:54:11 -06:00
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."
, propositionReductio = ""
2024-11-20 21:34:52 -06:00
, propositionSummary = "To date, there is not a single case of supposed heart disease reversal from a plant-based diet that is actually compatible with established definitions of heart disease reversal in the literature."
2024-11-18 00:54:11 -06:00
, proofLink = "https://www.umsu.de/trees/#(P~1~3Q~5~3R),(P),(~3Q)|=(~3R)"
2024-11-22 02:19:27 -06:00
, proofText = ""
2024-11-18 00:54:11 -06:00
, 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)"
}
]
, conclusion = "Therefore, plant-based diets do not appear to clinically reverse atherosclerosis."
, conclusionNotation = "(¬R)"
}
]
}