2024-11-22 15:10:32 -06:00
|
|
|
module Debate.Arguments.Malondialdehyde exposing (..)
|
2024-11-15 23:28:32 -06:00
|
|
|
|
|
|
|
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."
|
2024-11-18 18:55:36 -06:00
|
|
|
, 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-22 15:10:32 -06:00
|
|
|
|
2024-11-25 18:50:12 -06:00
|
|
|
, argumentCertainty = 1
|
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
|
|
|
}
|
|
|
|
, { definiendum = "x"
|
|
|
|
, definiens = "a substance"
|
|
|
|
}
|
|
|
|
, { definiendum = "y"
|
|
|
|
, 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
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|