feat: imported arguments to page

This commit is contained in:
Nick 2024-11-18 14:35:20 -06:00
parent 4fdb5f966f
commit 7f630108fa
27 changed files with 124 additions and 172 deletions

View file

@ -1,33 +0,0 @@
module Debate.Arguments.Veganism.CropDeaths exposing (..)
import Debate.Types exposing (..)
argumentCropDeaths : Argument
argumentCropDeaths =
{ argumentTitle = "Cropland vs Wildland Argument"
, propositionTitle = "Proposition"
, propositionSummary = "We can't claim to know that cropland kills more animals than wildland, because if we did know this, there would be evidence for it, and there isn't any such evidence."
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(~3Q)%7C=(~3P)"
, definitionTable =
[ { definiendum = "P"
, definiens = "it is known that cropland leads to more animal death than wildland"
}
, { definiendum = "Q"
, definiens = "there is evidence that cropland leads to more animal death than wildland"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "If it is known that cropland leads to more animal death than wildland, then there is evidence that cropland leads to more animal death than wildland."
, notation = "(PQ)"
}
, { premise = "There is not evidence that cropland leads to more animal death than wildland."
, notation = "(P)"
}
]
, conclusion = "Therefore, it is not known that cropland leads to more animal death than wildland."
, conclusionNotation = "(¬P)"
}
]
}