2024-11-22 15:10:32 -06:00
|
|
|
module Debate.Arguments.PlantBasedCVDReversal exposing (..)
|
2024-11-18 00:54:11 -06:00
|
|
|
|
|
|
|
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."
|
2024-11-18 18:55:36 -06:00
|
|
|
, 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 15:10:32 -06:00
|
|
|
|
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."
|
2024-11-22 15:10:32 -06:00
|
|
|
, notation = "P∧¬Q→¬R"
|
2024-11-18 00:54:11 -06:00
|
|
|
}
|
|
|
|
, { premise = "There are established definitions for atherosclerosis reversal in the domain of cardiology."
|
2024-11-22 15:10:32 -06:00
|
|
|
, notation = "P"
|
2024-11-18 00:54:11 -06:00
|
|
|
}
|
|
|
|
, { premise = "Current research on plant-based diets and atherosclerosis reversal do not satisfy the definitions for atherosclerosis reversal in the domain of cardiology."
|
2024-11-22 15:10:32 -06:00
|
|
|
, notation = "¬Q"
|
2024-11-18 00:54:11 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
, conclusion = "Therefore, plant-based diets do not appear to clinically reverse atherosclerosis."
|
2024-11-22 15:10:32 -06:00
|
|
|
, conclusionNotation = "¬R"
|
2024-11-18 00:54:11 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|