mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-17 04:45:12 -05:00
feat: uncucked my arguments
This commit is contained in:
parent
73a5a13100
commit
4d59a6997c
53 changed files with 391 additions and 524 deletions
41
frontend/src/Debate/Arguments/AnabolicKeto.elm
Executable file
41
frontend/src/Debate/Arguments/AnabolicKeto.elm
Executable file
|
@ -0,0 +1,41 @@
|
|||
module Debate.Arguments.AnabolicKeto exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentAnabolicKeto : Argument
|
||||
argumentAnabolicKeto =
|
||||
{ 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."
|
||||
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)|=(R)"
|
||||
|
||||
, definitionTable =
|
||||
[ { definiendum = "P"
|
||||
, definiens = "a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets"
|
||||
}
|
||||
, { definiendum = "Q"
|
||||
, definiens = "a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets"
|
||||
}
|
||||
, { definiendum = "R"
|
||||
, definiens = "ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { 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 = "P→Q"
|
||||
}
|
||||
, { 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 = "Q→R"
|
||||
}
|
||||
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
|
||||
, notation = "P"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
|
||||
, conclusionNotation = "∴R"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue