2024-12-08 02:18:36 -06:00
|
|
|
module Debate.Arguments.Inferences.Malondialdehyde exposing (..)
|
2024-11-15 23:28:32 -06:00
|
|
|
|
2024-12-08 02:18:36 -06:00
|
|
|
import Debate.Arguments.Types exposing (..)
|
2024-11-15 23:28:32 -06:00
|
|
|
|
|
|
|
|
|
|
|
argumentMalondialdehyde : Argument
|
|
|
|
argumentMalondialdehyde =
|
2024-11-17 01:28:10 -06:00
|
|
|
{ argumentTitle = "Atherogenic Omega-3 Reductio"
|
|
|
|
, propositionTitle = "Omega-3s are atherogenic."
|
2024-12-03 21:17:17 -06:00
|
|
|
, propositionReductio = "Certain anti-seed oil proponents assert that seed oils cause atherosclerosis via omega-6-derived malondialdehyde, and that this is the only cause of atherosclerosis. However, they often also assert that omega-3 fatty acids are anti-atherogenic, despite the fact that omega-3s actually produce more malondialdehyde than omega-6s."
|
2024-11-18 18:55:36 -06:00
|
|
|
, 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-26 04:32:11 -06:00
|
|
|
, argumentCertainty = 6
|
2024-11-28 03:51:30 -06:00
|
|
|
, argumentImage = "mda"
|
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-18 21:51:19 -06:00
|
|
|
}
|
2024-11-26 04:32:11 -06:00
|
|
|
, { definiendum = "x"
|
2024-11-18 21:51:19 -06:00
|
|
|
, definiens = "a substance"
|
|
|
|
}
|
2024-11-26 04:32:11 -06:00
|
|
|
, { definiendum = "y"
|
2024-11-18 21:51:19 -06:00
|
|
|
, definiens = "malondialdehyde-producing fatty acids"
|
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-19 01:12:55 -06:00
|
|
|
[ { premise = "A substance increases the risk of atherosclerosis if, and only if, that substance facilitates the oxidative modification of LDL particles."
|
2024-11-22 15:10:32 -06:00
|
|
|
, notation = "∀x(Px↔Qx)"
|
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-22 15:10:32 -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-22 15:10:32 -06:00
|
|
|
, notation = "Pm→∀y(Ry)"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
]
|
2024-11-17 01:28:10 -06:00
|
|
|
, conclusion = "Therefore, omega-3s are atherogenic."
|
2024-11-22 15:10:32 -06:00
|
|
|
, conclusionNotation = "Ro"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|