What fraction of all possible crafting recipes in Minecraft are currently used? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)What is Redstone used for in Minecraft?What are all the gamerule commands in Minecraft?What are all the commands for singleplayer minecraft?What are all possible ways to stop a zombie from despawning?What crafting recipes are these?MINECRAFT : Failed to login : The authentication are currently down for maintenanceMinecraft floor crafting deletes previous resultsWhat are Chain Command Blocks used for in Minecraft?Is it possible to disable crafting recipes in Minecraft for certain items and not disable others?Is it possible to remove recipes in minecraft?
Need a suitable toxic chemical for a murder plot in my novel
Are my PIs rude or am I just being too sensitive?
How to select 3,000 out of 10,000 files in file manager?
Was credit for the black hole image misattributed?
What LEGO pieces have "real-world" functionality?
I'm thinking of a number
Array/tabular for long multiplication
Is there folklore associating late breastfeeding with low intelligence and/or gullibility?
How can I protect witches in combat who wear limited clothing?
How to dynamically generate the hash value of a file while it gets downloaded from any website?
Mortgage adviser recommends a longer term than necessary combined with overpayments
Classification of bundles, Postnikov towers, obstruction theory, local coefficients
What to do with post with dry rot?
How to colour the US map with Yellow, Green, Red and Blue to minimize the number of states with the colour of Green
Can the prologue be the backstory of your main character?
How to retrograde a note sequence in Finale?
Can a 1st-level character have an ability score above 18?
Can't figure this one out.. What is the missing box?
Single author papers against my advisor's will?
A constraint that implies convexity
What items from the Roman-age tech-level could be used to deter all creatures from entering a small area?
Estimate capacitor parameters
Do working physicists consider Newtonian mechanics to be "falsified"?
If A makes B more likely then B makes A more likely"
What fraction of all possible crafting recipes in Minecraft are currently used?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)What is Redstone used for in Minecraft?What are all the gamerule commands in Minecraft?What are all the commands for singleplayer minecraft?What are all possible ways to stop a zombie from despawning?What crafting recipes are these?MINECRAFT : Failed to login : The authentication are currently down for maintenanceMinecraft floor crafting deletes previous resultsWhat are Chain Command Blocks used for in Minecraft?Is it possible to disable crafting recipes in Minecraft for certain items and not disable others?Is it possible to remove recipes in minecraft?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Consider the 3x3 crafting grid. Many recipes, such as placing 4 wooden planks in a 2x2 square, produce a new item as output. Others, such as placing a splash potion of Instant Health 2 by itself in the center of the crafting table, do not produce any output. I'm curious as to what fraction of all possible crafting recipes in the game are currently used, i.e., they cause an item to appear in the 3x3 crafting menu's output slot.
The number I am looking for is:
p = r/n
Where p is the answer to my question, r is the number of distinct crafting recipes in the game that yield an item, and n is the the total number of possible distinct crafting recipes in the game using all existing items.
I am only interested in the 3x3 crafting menu accessible via the in-game crafting table. Recipes that require a furnace or a brewing stand, for example, do not contribute to the above variables.
To help demonstrate what I'm looking for, imagine that the only items in the entire game are oak planks, crafting tables, oak slabs, and oak stairs. In this case, the answer to this question would be:
n = 59-1 = 1,953,124
r = 4 + 3 + 2 + 1 = 10
p = 10/1,953,124 = 0.000512%
Explanation: each of the crafting table's 9 slots can have 1 of 5 states: either one of the four items I included in this thought experiment, or empty. We subtract one because the output is assumed to be empty when all slots are empty.
There are 4 recipes which yield a crafting table, 3 which yield slabs, 2 which yield stairs, and 1 which yields a barrel (upcoming in 1.14; you can decide for yourself whether to include items added in 1.14 in your answers).
Note that the recipe for the composter is not included as I am only interested in the Java edition, in which the recipe for the composter requires fences.
If we modify this thought experiment to also include birch planks, slabs, and stairs, the new numbers become:
n = 99-1 = 387,420,488
r = 4*(24) + 2*(3 + 2) + 28 = 330
p = 330/387,420,488 = 0.000085%
Explanation, part 2:
We have added 4 new blocks for a total of 9.
Each of the four blocks used to in the crafting table's recipe can now be either oak or birch planks. The stairs and slabs cannot mix wood types, so their number of recipes is simply doubled. Each of the 8 blocks (planks and slabs) used in crafting the barrel can also be either oak or birch.
minecraft
add a comment |
Consider the 3x3 crafting grid. Many recipes, such as placing 4 wooden planks in a 2x2 square, produce a new item as output. Others, such as placing a splash potion of Instant Health 2 by itself in the center of the crafting table, do not produce any output. I'm curious as to what fraction of all possible crafting recipes in the game are currently used, i.e., they cause an item to appear in the 3x3 crafting menu's output slot.
The number I am looking for is:
p = r/n
Where p is the answer to my question, r is the number of distinct crafting recipes in the game that yield an item, and n is the the total number of possible distinct crafting recipes in the game using all existing items.
I am only interested in the 3x3 crafting menu accessible via the in-game crafting table. Recipes that require a furnace or a brewing stand, for example, do not contribute to the above variables.
To help demonstrate what I'm looking for, imagine that the only items in the entire game are oak planks, crafting tables, oak slabs, and oak stairs. In this case, the answer to this question would be:
n = 59-1 = 1,953,124
r = 4 + 3 + 2 + 1 = 10
p = 10/1,953,124 = 0.000512%
Explanation: each of the crafting table's 9 slots can have 1 of 5 states: either one of the four items I included in this thought experiment, or empty. We subtract one because the output is assumed to be empty when all slots are empty.
There are 4 recipes which yield a crafting table, 3 which yield slabs, 2 which yield stairs, and 1 which yields a barrel (upcoming in 1.14; you can decide for yourself whether to include items added in 1.14 in your answers).
Note that the recipe for the composter is not included as I am only interested in the Java edition, in which the recipe for the composter requires fences.
If we modify this thought experiment to also include birch planks, slabs, and stairs, the new numbers become:
n = 99-1 = 387,420,488
r = 4*(24) + 2*(3 + 2) + 28 = 330
p = 330/387,420,488 = 0.000085%
Explanation, part 2:
We have added 4 new blocks for a total of 9.
Each of the four blocks used to in the crafting table's recipe can now be either oak or birch planks. The stairs and slabs cannot mix wood types, so their number of recipes is simply doubled. Each of the 8 blocks (planks and slabs) used in crafting the barrel can also be either oak or birch.
minecraft
add a comment |
Consider the 3x3 crafting grid. Many recipes, such as placing 4 wooden planks in a 2x2 square, produce a new item as output. Others, such as placing a splash potion of Instant Health 2 by itself in the center of the crafting table, do not produce any output. I'm curious as to what fraction of all possible crafting recipes in the game are currently used, i.e., they cause an item to appear in the 3x3 crafting menu's output slot.
The number I am looking for is:
p = r/n
Where p is the answer to my question, r is the number of distinct crafting recipes in the game that yield an item, and n is the the total number of possible distinct crafting recipes in the game using all existing items.
I am only interested in the 3x3 crafting menu accessible via the in-game crafting table. Recipes that require a furnace or a brewing stand, for example, do not contribute to the above variables.
To help demonstrate what I'm looking for, imagine that the only items in the entire game are oak planks, crafting tables, oak slabs, and oak stairs. In this case, the answer to this question would be:
n = 59-1 = 1,953,124
r = 4 + 3 + 2 + 1 = 10
p = 10/1,953,124 = 0.000512%
Explanation: each of the crafting table's 9 slots can have 1 of 5 states: either one of the four items I included in this thought experiment, or empty. We subtract one because the output is assumed to be empty when all slots are empty.
There are 4 recipes which yield a crafting table, 3 which yield slabs, 2 which yield stairs, and 1 which yields a barrel (upcoming in 1.14; you can decide for yourself whether to include items added in 1.14 in your answers).
Note that the recipe for the composter is not included as I am only interested in the Java edition, in which the recipe for the composter requires fences.
If we modify this thought experiment to also include birch planks, slabs, and stairs, the new numbers become:
n = 99-1 = 387,420,488
r = 4*(24) + 2*(3 + 2) + 28 = 330
p = 330/387,420,488 = 0.000085%
Explanation, part 2:
We have added 4 new blocks for a total of 9.
Each of the four blocks used to in the crafting table's recipe can now be either oak or birch planks. The stairs and slabs cannot mix wood types, so their number of recipes is simply doubled. Each of the 8 blocks (planks and slabs) used in crafting the barrel can also be either oak or birch.
minecraft
Consider the 3x3 crafting grid. Many recipes, such as placing 4 wooden planks in a 2x2 square, produce a new item as output. Others, such as placing a splash potion of Instant Health 2 by itself in the center of the crafting table, do not produce any output. I'm curious as to what fraction of all possible crafting recipes in the game are currently used, i.e., they cause an item to appear in the 3x3 crafting menu's output slot.
The number I am looking for is:
p = r/n
Where p is the answer to my question, r is the number of distinct crafting recipes in the game that yield an item, and n is the the total number of possible distinct crafting recipes in the game using all existing items.
I am only interested in the 3x3 crafting menu accessible via the in-game crafting table. Recipes that require a furnace or a brewing stand, for example, do not contribute to the above variables.
To help demonstrate what I'm looking for, imagine that the only items in the entire game are oak planks, crafting tables, oak slabs, and oak stairs. In this case, the answer to this question would be:
n = 59-1 = 1,953,124
r = 4 + 3 + 2 + 1 = 10
p = 10/1,953,124 = 0.000512%
Explanation: each of the crafting table's 9 slots can have 1 of 5 states: either one of the four items I included in this thought experiment, or empty. We subtract one because the output is assumed to be empty when all slots are empty.
There are 4 recipes which yield a crafting table, 3 which yield slabs, 2 which yield stairs, and 1 which yields a barrel (upcoming in 1.14; you can decide for yourself whether to include items added in 1.14 in your answers).
Note that the recipe for the composter is not included as I am only interested in the Java edition, in which the recipe for the composter requires fences.
If we modify this thought experiment to also include birch planks, slabs, and stairs, the new numbers become:
n = 99-1 = 387,420,488
r = 4*(24) + 2*(3 + 2) + 28 = 330
p = 330/387,420,488 = 0.000085%
Explanation, part 2:
We have added 4 new blocks for a total of 9.
Each of the four blocks used to in the crafting table's recipe can now be either oak or birch planks. The stairs and slabs cannot mix wood types, so their number of recipes is simply doubled. Each of the 8 blocks (planks and slabs) used in crafting the barrel can also be either oak or birch.
minecraft
minecraft
asked 1 hour ago
ApproachingDarknessFishApproachingDarknessFish
243129
243129
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The result will be 0 on any normal calculator. You'll need something like Java's "BigDecimal" to even have a hope of calculating it. And even then it might just be 0.
This question goes way deeper than you probably expect:
- There are many different banner patterns. There are limits of everything, but you still have (in theory) 3150000000000000 different patterns to choose from.
- You can name items. With the full Unicode range this gives you 1114112^35~4*10^211 different names.
- This is all nothing compared to written books. The number of possible written books is more difficult to determine, because you have a line length limit, but it's probably somewhat around 10^70000. But you can't actually use most of those, because most will be so dense with Chinese characters that they actually cause an error in the world saving process, which can make worlds unjoinable or reset chunks, among other things.
- Maps can encode big areas of a world, each with a lot of different blocks in them. The more I progress in this answer, the less sure I am of my numbers, but a wild guess puts the number of possible maps on the rough order of 10^40000, potentially a lot more. It depends on what of the world is actually stored in them.
- You can fill shulker boxes, each slot can contain everything except a shulker box, giving you a number of possible items that is probably somewhere in the area of 10^2000000.
- And who knows, maybe there are some bugs that allow you to put shulker boxes into shulker boxes or to get chests with content or to use structure blocks or whatever, or maybe your question already includes those Creative-only items. If that's the case, then you could get a theoretically infinite amount of different items. Then it becomes a matter of implementation how much NBT in one item still works without crashing the game.
So my final answer… doesn't fit into the character limit of a StackExchange answer. And I can't even post it into Pastebin, it's too long for that as well. So I'll round a tiny bit and say that your final value for p is:
0
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "41"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f349014%2fwhat-fraction-of-all-possible-crafting-recipes-in-minecraft-are-currently-used%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The result will be 0 on any normal calculator. You'll need something like Java's "BigDecimal" to even have a hope of calculating it. And even then it might just be 0.
This question goes way deeper than you probably expect:
- There are many different banner patterns. There are limits of everything, but you still have (in theory) 3150000000000000 different patterns to choose from.
- You can name items. With the full Unicode range this gives you 1114112^35~4*10^211 different names.
- This is all nothing compared to written books. The number of possible written books is more difficult to determine, because you have a line length limit, but it's probably somewhat around 10^70000. But you can't actually use most of those, because most will be so dense with Chinese characters that they actually cause an error in the world saving process, which can make worlds unjoinable or reset chunks, among other things.
- Maps can encode big areas of a world, each with a lot of different blocks in them. The more I progress in this answer, the less sure I am of my numbers, but a wild guess puts the number of possible maps on the rough order of 10^40000, potentially a lot more. It depends on what of the world is actually stored in them.
- You can fill shulker boxes, each slot can contain everything except a shulker box, giving you a number of possible items that is probably somewhere in the area of 10^2000000.
- And who knows, maybe there are some bugs that allow you to put shulker boxes into shulker boxes or to get chests with content or to use structure blocks or whatever, or maybe your question already includes those Creative-only items. If that's the case, then you could get a theoretically infinite amount of different items. Then it becomes a matter of implementation how much NBT in one item still works without crashing the game.
So my final answer… doesn't fit into the character limit of a StackExchange answer. And I can't even post it into Pastebin, it's too long for that as well. So I'll round a tiny bit and say that your final value for p is:
0
add a comment |
The result will be 0 on any normal calculator. You'll need something like Java's "BigDecimal" to even have a hope of calculating it. And even then it might just be 0.
This question goes way deeper than you probably expect:
- There are many different banner patterns. There are limits of everything, but you still have (in theory) 3150000000000000 different patterns to choose from.
- You can name items. With the full Unicode range this gives you 1114112^35~4*10^211 different names.
- This is all nothing compared to written books. The number of possible written books is more difficult to determine, because you have a line length limit, but it's probably somewhat around 10^70000. But you can't actually use most of those, because most will be so dense with Chinese characters that they actually cause an error in the world saving process, which can make worlds unjoinable or reset chunks, among other things.
- Maps can encode big areas of a world, each with a lot of different blocks in them. The more I progress in this answer, the less sure I am of my numbers, but a wild guess puts the number of possible maps on the rough order of 10^40000, potentially a lot more. It depends on what of the world is actually stored in them.
- You can fill shulker boxes, each slot can contain everything except a shulker box, giving you a number of possible items that is probably somewhere in the area of 10^2000000.
- And who knows, maybe there are some bugs that allow you to put shulker boxes into shulker boxes or to get chests with content or to use structure blocks or whatever, or maybe your question already includes those Creative-only items. If that's the case, then you could get a theoretically infinite amount of different items. Then it becomes a matter of implementation how much NBT in one item still works without crashing the game.
So my final answer… doesn't fit into the character limit of a StackExchange answer. And I can't even post it into Pastebin, it's too long for that as well. So I'll round a tiny bit and say that your final value for p is:
0
add a comment |
The result will be 0 on any normal calculator. You'll need something like Java's "BigDecimal" to even have a hope of calculating it. And even then it might just be 0.
This question goes way deeper than you probably expect:
- There are many different banner patterns. There are limits of everything, but you still have (in theory) 3150000000000000 different patterns to choose from.
- You can name items. With the full Unicode range this gives you 1114112^35~4*10^211 different names.
- This is all nothing compared to written books. The number of possible written books is more difficult to determine, because you have a line length limit, but it's probably somewhat around 10^70000. But you can't actually use most of those, because most will be so dense with Chinese characters that they actually cause an error in the world saving process, which can make worlds unjoinable or reset chunks, among other things.
- Maps can encode big areas of a world, each with a lot of different blocks in them. The more I progress in this answer, the less sure I am of my numbers, but a wild guess puts the number of possible maps on the rough order of 10^40000, potentially a lot more. It depends on what of the world is actually stored in them.
- You can fill shulker boxes, each slot can contain everything except a shulker box, giving you a number of possible items that is probably somewhere in the area of 10^2000000.
- And who knows, maybe there are some bugs that allow you to put shulker boxes into shulker boxes or to get chests with content or to use structure blocks or whatever, or maybe your question already includes those Creative-only items. If that's the case, then you could get a theoretically infinite amount of different items. Then it becomes a matter of implementation how much NBT in one item still works without crashing the game.
So my final answer… doesn't fit into the character limit of a StackExchange answer. And I can't even post it into Pastebin, it's too long for that as well. So I'll round a tiny bit and say that your final value for p is:
0
The result will be 0 on any normal calculator. You'll need something like Java's "BigDecimal" to even have a hope of calculating it. And even then it might just be 0.
This question goes way deeper than you probably expect:
- There are many different banner patterns. There are limits of everything, but you still have (in theory) 3150000000000000 different patterns to choose from.
- You can name items. With the full Unicode range this gives you 1114112^35~4*10^211 different names.
- This is all nothing compared to written books. The number of possible written books is more difficult to determine, because you have a line length limit, but it's probably somewhat around 10^70000. But you can't actually use most of those, because most will be so dense with Chinese characters that they actually cause an error in the world saving process, which can make worlds unjoinable or reset chunks, among other things.
- Maps can encode big areas of a world, each with a lot of different blocks in them. The more I progress in this answer, the less sure I am of my numbers, but a wild guess puts the number of possible maps on the rough order of 10^40000, potentially a lot more. It depends on what of the world is actually stored in them.
- You can fill shulker boxes, each slot can contain everything except a shulker box, giving you a number of possible items that is probably somewhere in the area of 10^2000000.
- And who knows, maybe there are some bugs that allow you to put shulker boxes into shulker boxes or to get chests with content or to use structure blocks or whatever, or maybe your question already includes those Creative-only items. If that's the case, then you could get a theoretically infinite amount of different items. Then it becomes a matter of implementation how much NBT in one item still works without crashing the game.
So my final answer… doesn't fit into the character limit of a StackExchange answer. And I can't even post it into Pastebin, it's too long for that as well. So I'll round a tiny bit and say that your final value for p is:
0
answered 1 min ago
Fabian RölingFabian Röling
6,42231340
6,42231340
add a comment |
add a comment |
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f349014%2fwhat-fraction-of-all-possible-crafting-recipes-in-minecraft-are-currently-used%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown