website/frontend/src/Debate/Arguments/Philosophy/ColonizingNature.elm

51 lines
2.6 KiB
Elm
Raw Normal View History

2024-11-18 14:35:20 -06:00
module Debate.Arguments.Philosophy.ColonizingNature exposing (..)
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentColonizingNature : Argument
argumentColonizingNature =
2024-11-17 13:45:22 -06:00
{ argumentTitle = "Argument for the Non-Violence Displacement of Nature"
, propositionTitle = "We are justified in displacing nature into non-existence"
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-17 13:45:22 -06:00
, proofLink = "https://www.umsu.de/trees/#(P~1~3Q~1~3R~1~3S~5T),(P),(~3Q),(~3R),(~3S)%7C=(T)"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 13:45:22 -06:00
[ { definiendum = "P"
, definiens = "the natural world contains intolerable rights violations"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "Q"
, definiens = "we know that nature is net positive or net negative for utility"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "R"
, definiens = "there is any known practical means by which to end the rights violations beyond the use of force"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "S"
, definiens = "the natural world is currently instrumentally vital to facilitating human flourishing"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "T"
, definiens = "we are justified in displacing nature into non-existence"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 13:45:22 -06:00
[ { premise = "If the natural world contains intolerable rights violations and we do not know that nature is net positive or net negative for utility and there is not any known practical means by which to end the rights violations beyond the use of force and the natural world is not currently instrumentally vital to facilitating human flourishing, then we are justified in displacing nature into non-existence."
, notation = "(P¬Q¬R¬ST)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "Nature entails intolerable rights violations."
, notation = "(P)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "We do not know if nature is net positive or net negative for utility."
, notation = "(¬Q)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "There is not any known practical means by which to end the rights violations beyond the use of force."
, notation = "(¬R)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "The natural world is not currently instrumentally vital to facilitating human flourishing."
, notation = "(¬S)"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 13:45:22 -06:00
, conclusion = "Therefore, we are justified in displacing nature into non-existence."
, conclusionNotation = "(T)"
2024-11-16 17:48:59 -06:00
}
]
}