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

47 lines
2.2 KiB
Elm
Raw Normal View History

2024-11-15 23:28:32 -06:00
module Debate.Arguments.Nutrition.Malondialdehyde exposing (..)
import Debate.Types exposing (..)
argumentMalondialdehyde : Argument
argumentMalondialdehyde =
2024-11-17 01:28:10 -06:00
{ argumentTitle = "Atherogenic Omega-3 Reductio"
, propositionTitle = "Omega-3s are atherogenic."
, propositionReductio = ""
, propositionSummary = "If one takes the view that in order for a substance to increase the risk of atherosclerosis, it must facilitate the oxidative modification of LDL particles via malondialdehyde production, and one also affirms that omega-3s are anti-atherogenic, then this would imply that all fatty acids that produce malondialdehyde, including omega-3s, must also be atherogenic, which contradicts the their belief that omega-3s are heart-healthy."
2024-11-18 15:19:43 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qm),(Pm~5~6x(Rx))%7C=(Ro)"
2024-11-15 23:28:32 -06:00
, definitionTable =
2024-11-18 15:19:43 -06:00
[ { definiendum = "P(x)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) increases the risk of atherosclerosis"
2024-11-15 23:28:32 -06:00
}
2024-11-18 15:19:43 -06:00
, { definiendum = "Q(x)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) facilitates the oxidative modification of LDL particles"
2024-11-15 23:28:32 -06:00
}
2024-11-18 15:19:43 -06:00
, { definiendum = "R(x)"
2024-11-17 01:28:10 -06:00
, definiens = "all (x) are atherogenic"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "m"
, definiens = "malondialdehyde"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "o"
, definiens = "omega-3s"
2024-11-15 23:28:32 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 01:28:10 -06:00
[ { premise = "Something increases the risk of atherosclerosis if and only if something facilitates the oxidative modification of LDL particles."
2024-11-18 15:19:43 -06:00
, notation = "(x(PxQx))"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "Malondialdehyde facilitates the oxidative modification of LDL particles."
2024-11-18 15:19:43 -06:00
, notation = "(Qm)"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "If malondialdehyde increases the risk of atherosclerosis, then all malondialdehyde-producing fatty acids are atherogenic."
2024-11-18 15:19:43 -06:00
, notation = "(Pmx(Rx))"
2024-11-15 23:28:32 -06:00
}
]
2024-11-17 01:28:10 -06:00
, conclusion = "Therefore, omega-3s are atherogenic."
2024-11-18 15:19:43 -06:00
, conclusionNotation = "(Ro)"
2024-11-15 23:28:32 -06:00
}
]
}