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

42 lines
2.3 KiB
Elm
Raw Normal View History

2024-11-16 15:50:33 -06:00
module Debate.Arguments.Nutrition.AnabolicKeto exposing (..)
import Debate.Types exposing (..)
argumentAnabolicKeto : Argument
argumentAnabolicKeto =
2024-11-16 22:44:25 -06:00
{ argumentTitle = "Anabolic Opportunity Cost on Keto"
, propositionTitle = "Ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, propositionReductio = ""
, propositionSummary = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets, reducing the amount available for hypertrophy. This likely costs anabolic potential on ketogenic diets compared to non-ketogenic diets."
2024-11-16 22:44:25 -06:00
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)|=(R)"
2024-11-22 02:19:27 -06:00
, proofText = ""
2024-11-16 15:50:33 -06:00
, definitionTable =
2024-11-16 22:44:25 -06:00
[ { definiendum = "P"
, definiens = "a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets"
2024-11-16 15:50:33 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "Q"
, definiens = "a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets"
2024-11-16 15:50:33 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "R"
, definiens = "ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets"
2024-11-16 15:50:33 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-16 22:44:25 -06:00
[ { premise = "If a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets, then a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets."
, notation = "(PQ)"
2024-11-16 15:50:33 -06:00
}
2024-11-16 22:44:25 -06:00
, { premise = "If a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets, then ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, notation = "(QR)"
2024-11-16 15:50:33 -06:00
}
2024-11-19 13:17:57 -06:00
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
, notation = "(P)"
}
2024-11-16 15:50:33 -06:00
]
2024-11-16 22:44:25 -06:00
, conclusion = "Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, conclusionNotation = "(R)"
2024-11-16 15:50:33 -06:00
}
]
}