Create the numbers 1 - 30 using the digits 2, 0, 1, 9 in this particular order!












6














Inspired by the last year's "2018 four 4s challenge", I thought it's time to welcome 2019 by a similar challenge. This time you have to use the digits 2, 0, 1, 9 in this particular order to create the numbers 1 - 30.



The rules haven't changed:




  • Use all four digits exactly once in the order 2-0-1-9.

  • Allowed operations: $+, -, cdot, div, !$ (factorial), $!!$ (double factorial), square root, exponentiation.

  • Parentheses and grouping (e.g. "19") are also allowed.

  • Squaring uses the digit 2, so expressions using multiple 2's, e. g. $2^2$ or $1^2+2^9$, are not allowed.

  • The modulus operator $(%, mod)$ is not allowed.

  • Rounding (e.g. 201/9=22) is not allowed.


I'm curious to see your creative solutions!



May each day of 2019 bring happiness, good cheer, and sweet surprises to you and all your dear ones!



Happy New Year and greetings from Germany!
André










share|improve this question






















  • Will you be giving a green check to someone?
    – flashstorm
    4 hours ago










  • Of course I'll do.
    – André
    14 mins ago
















6














Inspired by the last year's "2018 four 4s challenge", I thought it's time to welcome 2019 by a similar challenge. This time you have to use the digits 2, 0, 1, 9 in this particular order to create the numbers 1 - 30.



The rules haven't changed:




  • Use all four digits exactly once in the order 2-0-1-9.

  • Allowed operations: $+, -, cdot, div, !$ (factorial), $!!$ (double factorial), square root, exponentiation.

  • Parentheses and grouping (e.g. "19") are also allowed.

  • Squaring uses the digit 2, so expressions using multiple 2's, e. g. $2^2$ or $1^2+2^9$, are not allowed.

  • The modulus operator $(%, mod)$ is not allowed.

  • Rounding (e.g. 201/9=22) is not allowed.


I'm curious to see your creative solutions!



May each day of 2019 bring happiness, good cheer, and sweet surprises to you and all your dear ones!



Happy New Year and greetings from Germany!
André










share|improve this question






















  • Will you be giving a green check to someone?
    – flashstorm
    4 hours ago










  • Of course I'll do.
    – André
    14 mins ago














6












6








6


1





Inspired by the last year's "2018 four 4s challenge", I thought it's time to welcome 2019 by a similar challenge. This time you have to use the digits 2, 0, 1, 9 in this particular order to create the numbers 1 - 30.



The rules haven't changed:




  • Use all four digits exactly once in the order 2-0-1-9.

  • Allowed operations: $+, -, cdot, div, !$ (factorial), $!!$ (double factorial), square root, exponentiation.

  • Parentheses and grouping (e.g. "19") are also allowed.

  • Squaring uses the digit 2, so expressions using multiple 2's, e. g. $2^2$ or $1^2+2^9$, are not allowed.

  • The modulus operator $(%, mod)$ is not allowed.

  • Rounding (e.g. 201/9=22) is not allowed.


I'm curious to see your creative solutions!



May each day of 2019 bring happiness, good cheer, and sweet surprises to you and all your dear ones!



Happy New Year and greetings from Germany!
André










share|improve this question













Inspired by the last year's "2018 four 4s challenge", I thought it's time to welcome 2019 by a similar challenge. This time you have to use the digits 2, 0, 1, 9 in this particular order to create the numbers 1 - 30.



The rules haven't changed:




  • Use all four digits exactly once in the order 2-0-1-9.

  • Allowed operations: $+, -, cdot, div, !$ (factorial), $!!$ (double factorial), square root, exponentiation.

  • Parentheses and grouping (e.g. "19") are also allowed.

  • Squaring uses the digit 2, so expressions using multiple 2's, e. g. $2^2$ or $1^2+2^9$, are not allowed.

  • The modulus operator $(%, mod)$ is not allowed.

  • Rounding (e.g. 201/9=22) is not allowed.


I'm curious to see your creative solutions!



May each day of 2019 bring happiness, good cheer, and sweet surprises to you and all your dear ones!



Happy New Year and greetings from Germany!
André







formation-of-numbers number-theory






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 8 hours ago









André

1,168716




1,168716












  • Will you be giving a green check to someone?
    – flashstorm
    4 hours ago










  • Of course I'll do.
    – André
    14 mins ago


















  • Will you be giving a green check to someone?
    – flashstorm
    4 hours ago










  • Of course I'll do.
    – André
    14 mins ago
















Will you be giving a green check to someone?
– flashstorm
4 hours ago




Will you be giving a green check to someone?
– flashstorm
4 hours ago












Of course I'll do.
– André
14 mins ago




Of course I'll do.
– André
14 mins ago










3 Answers
3






active

oldest

votes


















2














1




1 = 2^(0*19)




2




2 = 2 + (0*19)




3




3 = 2 + 0!^19




4




4 = 2 ^ (0! + 1 ^ 9)




5




-((2 + 0! + 1) - 9)




6




-((2 + 0 + 1) - 9))




7




-((2 + 0*1 - 9))




8




-((2 - 01) - 9)




9




2*0*1 + 9




10




2*0 + 1 + 9




11




2 + 0*1 + 9




12




2 + 0 + 1 + 9




13




2 + 0! + 1 + 9




14




(2 + 0!)! - 1 + 9




15




(2 + 0 + 1)! + 9




16




(2 + 0!)! + 1 + 9




17




20 - (1 * sqrt(9))




18




(2 + (0 * 1)) * 9




19




20 - 1^9




20




20 * 1^9




21




20 + 1^9




22




2 + 0! + 19




23




20 + 1 * sqrt(9)




24




20 + 1 + sqrt(9)




25




2 || (0! + 1 + sqrt (9))




explained:




Ok, this one needs explanation. The operation for "grouping" is known as concatenation and represented by ||. Basically this means push the digits together: 2 || 0 = 20. However, just like any operation, you can represent either side not by a number but by an equation on its own. So 0! + 1 + sqrt(9) = 5, meaning the above represents 2 || 5, qed.




26




2 || ((0! + 1) * sqrt(9))




27




(2 + 0 + 1) * 9




28




((2 + 0!) || 1) - sqrt(9)




29




(2 + (0 * 1)) || 9




30




20 + 1 + 9







share|improve this answer























  • edited for clarity
    – flashstorm
    7 hours ago










  • @flashstorm Um... $3ne 2+0^{19}$
    – Frpzzd
    7 hours ago






  • 1




    was missing an !
    – flashstorm
    7 hours ago










  • Ding! Fries are done :)
    – flashstorm
    7 hours ago



















5














$$1=20-19$$
$$2=2+0cdot 19=20div(1+9)$$
$$3=2cdot 0cdot 1+sqrt{9}=-(2+0+1)!+9$$
$$4=2^{0-1+sqrt{9}}$$
$$5=20div (1+sqrt{9})$$
$$6=(2cdot 0cdot 1+sqrt{9})!$$
$$7=-2-0cdot 1+9$$
$$8=2^{0cdot 1+sqrt{9}}$$
$$9=2cdot 0cdot 1+9$$
$$10=2cdot 0+1+9=20-1-9$$
$$11=2+0cdot 1+9=20-1cdot 9=2^0+1+9$$
$$12=2+0+1+9=20+1-9$$
$$13=2+0!+1+9=2^{0!+1}+9$$
$$14=(2+0!)!-1+9$$
$$15=(2+0+1)!+9$$
$$16=2^{0+1+sqrt{9}}$$
$$17=20-sqrt{1cdot 9}$$
$$18=20+1-sqrt{9}$$
$$19=2cdot 0+19$$
$$20=2^0+19$$
$$21=20+1^9$$
$$22=2cdot (0!+1+9)$$
$$23=20+sqrt{1cdot 9}$$
$$24=2^{0-1+sqrt{9}}!=20+1+sqrt{9}$$
$$25=(2+0!)!+19$$
$$26=2+0+(1+sqrt{9})!$$
$$27=(2+0+1)^{sqrt{9}}$$
$$28=20-1+9$$
$$29=20+1cdot 9=20cdot 1+9$$
$$30=20+1+9$$



DONE!





share























  • All finished now! :D
    – Frpzzd
    7 hours ago










  • Great :) But Spoiler-Tags would be nice ;)
    – André
    5 hours ago












  • @André Oh, sorry! I can't figure out how to get the mathjax to work inside of a spoiler tag. D:<
    – Frpzzd
    5 hours ago






  • 1




    @André Also: I've been trying to do 31, but it actually seems to be much harder than any of the previous ones! Looks like you picked just the right number to stop on! XD
    – Frpzzd
    5 hours ago










  • Your answer for 6 is incorrect; that expression comes out to 2. However, adding parentheses around part and another factorial will make it work.
    – user1207177
    5 hours ago





















1














1-16 were done as of the time I started this, so I wanted to focus only on 17-30, using answers different from ones that I've already seen. Others will be included if I find solutions that I like.



8:




$8 = sqrt{(2^{0!+1}!!)!! / (sqrt9)!}$




16:




$16 = ((2 + 0 + 1)!)!! / sqrt9 = 20 - 1 - sqrt9$




17:




$17 = (2 + 0! + 1)!! + 9$




18:




$18 = (2^0 + 1) cdot 9 = 2 cdot (0+1)cdot 9 = 2^{0+1} cdot 9$




19:




$19 = 2 cdot 0 + 19$




20:




$20 = 2^0 + 19 = 20! / 19!$




21:




$21 = 20 + 1^9$




22:




$22 = 20 - 1 + sqrt9$




23:




$23 = 20 + 1 cdot sqrt9$




24:




$24 = 2^{0! + 1} cdot (sqrt9)! = 2^{0! + 1}!! cdot sqrt9 = (2+0!+1)!! cdot sqrt9 = ((2 + 0!)! - 1)!! + 9$




25:




$25 = (2 + 0!)! + 19$




26:




$26 = 20 + 1 cdot (sqrt9)!$




27:




$27 = 2^{0! + 1}! + sqrt9$




28: Can't get one different from what I've already seen in other answers. Will maybe try later.



29:




$29 = 20 + 1 cdot 9$




30:




$30 = 2^{0! + 1}! + (sqrt9)!$




I know we're supposed to stop at 30, but I accidentally found this fun one:



32:




$32 = sqrt{20!! / (1 + 9)!}$







share|improve this answer























    Your Answer





    StackExchange.ifUsing("editor", function () {
    return StackExchange.using("mathjaxEditing", function () {
    StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
    StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
    });
    });
    }, "mathjax-editing");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "559"
    };
    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fpuzzling.stackexchange.com%2fquestions%2f77961%2fcreate-the-numbers-1-30-using-the-digits-2-0-1-9-in-this-particular-order%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    1




    1 = 2^(0*19)




    2




    2 = 2 + (0*19)




    3




    3 = 2 + 0!^19




    4




    4 = 2 ^ (0! + 1 ^ 9)




    5




    -((2 + 0! + 1) - 9)




    6




    -((2 + 0 + 1) - 9))




    7




    -((2 + 0*1 - 9))




    8




    -((2 - 01) - 9)




    9




    2*0*1 + 9




    10




    2*0 + 1 + 9




    11




    2 + 0*1 + 9




    12




    2 + 0 + 1 + 9




    13




    2 + 0! + 1 + 9




    14




    (2 + 0!)! - 1 + 9




    15




    (2 + 0 + 1)! + 9




    16




    (2 + 0!)! + 1 + 9




    17




    20 - (1 * sqrt(9))




    18




    (2 + (0 * 1)) * 9




    19




    20 - 1^9




    20




    20 * 1^9




    21




    20 + 1^9




    22




    2 + 0! + 19




    23




    20 + 1 * sqrt(9)




    24




    20 + 1 + sqrt(9)




    25




    2 || (0! + 1 + sqrt (9))




    explained:




    Ok, this one needs explanation. The operation for "grouping" is known as concatenation and represented by ||. Basically this means push the digits together: 2 || 0 = 20. However, just like any operation, you can represent either side not by a number but by an equation on its own. So 0! + 1 + sqrt(9) = 5, meaning the above represents 2 || 5, qed.




    26




    2 || ((0! + 1) * sqrt(9))




    27




    (2 + 0 + 1) * 9




    28




    ((2 + 0!) || 1) - sqrt(9)




    29




    (2 + (0 * 1)) || 9




    30




    20 + 1 + 9







    share|improve this answer























    • edited for clarity
      – flashstorm
      7 hours ago










    • @flashstorm Um... $3ne 2+0^{19}$
      – Frpzzd
      7 hours ago






    • 1




      was missing an !
      – flashstorm
      7 hours ago










    • Ding! Fries are done :)
      – flashstorm
      7 hours ago
















    2














    1




    1 = 2^(0*19)




    2




    2 = 2 + (0*19)




    3




    3 = 2 + 0!^19




    4




    4 = 2 ^ (0! + 1 ^ 9)




    5




    -((2 + 0! + 1) - 9)




    6




    -((2 + 0 + 1) - 9))




    7




    -((2 + 0*1 - 9))




    8




    -((2 - 01) - 9)




    9




    2*0*1 + 9




    10




    2*0 + 1 + 9




    11




    2 + 0*1 + 9




    12




    2 + 0 + 1 + 9




    13




    2 + 0! + 1 + 9




    14




    (2 + 0!)! - 1 + 9




    15




    (2 + 0 + 1)! + 9




    16




    (2 + 0!)! + 1 + 9




    17




    20 - (1 * sqrt(9))




    18




    (2 + (0 * 1)) * 9




    19




    20 - 1^9




    20




    20 * 1^9




    21




    20 + 1^9




    22




    2 + 0! + 19




    23




    20 + 1 * sqrt(9)




    24




    20 + 1 + sqrt(9)




    25




    2 || (0! + 1 + sqrt (9))




    explained:




    Ok, this one needs explanation. The operation for "grouping" is known as concatenation and represented by ||. Basically this means push the digits together: 2 || 0 = 20. However, just like any operation, you can represent either side not by a number but by an equation on its own. So 0! + 1 + sqrt(9) = 5, meaning the above represents 2 || 5, qed.




    26




    2 || ((0! + 1) * sqrt(9))




    27




    (2 + 0 + 1) * 9




    28




    ((2 + 0!) || 1) - sqrt(9)




    29




    (2 + (0 * 1)) || 9




    30




    20 + 1 + 9







    share|improve this answer























    • edited for clarity
      – flashstorm
      7 hours ago










    • @flashstorm Um... $3ne 2+0^{19}$
      – Frpzzd
      7 hours ago






    • 1




      was missing an !
      – flashstorm
      7 hours ago










    • Ding! Fries are done :)
      – flashstorm
      7 hours ago














    2












    2








    2






    1




    1 = 2^(0*19)




    2




    2 = 2 + (0*19)




    3




    3 = 2 + 0!^19




    4




    4 = 2 ^ (0! + 1 ^ 9)




    5




    -((2 + 0! + 1) - 9)




    6




    -((2 + 0 + 1) - 9))




    7




    -((2 + 0*1 - 9))




    8




    -((2 - 01) - 9)




    9




    2*0*1 + 9




    10




    2*0 + 1 + 9




    11




    2 + 0*1 + 9




    12




    2 + 0 + 1 + 9




    13




    2 + 0! + 1 + 9




    14




    (2 + 0!)! - 1 + 9




    15




    (2 + 0 + 1)! + 9




    16




    (2 + 0!)! + 1 + 9




    17




    20 - (1 * sqrt(9))




    18




    (2 + (0 * 1)) * 9




    19




    20 - 1^9




    20




    20 * 1^9




    21




    20 + 1^9




    22




    2 + 0! + 19




    23




    20 + 1 * sqrt(9)




    24




    20 + 1 + sqrt(9)




    25




    2 || (0! + 1 + sqrt (9))




    explained:




    Ok, this one needs explanation. The operation for "grouping" is known as concatenation and represented by ||. Basically this means push the digits together: 2 || 0 = 20. However, just like any operation, you can represent either side not by a number but by an equation on its own. So 0! + 1 + sqrt(9) = 5, meaning the above represents 2 || 5, qed.




    26




    2 || ((0! + 1) * sqrt(9))




    27




    (2 + 0 + 1) * 9




    28




    ((2 + 0!) || 1) - sqrt(9)




    29




    (2 + (0 * 1)) || 9




    30




    20 + 1 + 9







    share|improve this answer














    1




    1 = 2^(0*19)




    2




    2 = 2 + (0*19)




    3




    3 = 2 + 0!^19




    4




    4 = 2 ^ (0! + 1 ^ 9)




    5




    -((2 + 0! + 1) - 9)




    6




    -((2 + 0 + 1) - 9))




    7




    -((2 + 0*1 - 9))




    8




    -((2 - 01) - 9)




    9




    2*0*1 + 9




    10




    2*0 + 1 + 9




    11




    2 + 0*1 + 9




    12




    2 + 0 + 1 + 9




    13




    2 + 0! + 1 + 9




    14




    (2 + 0!)! - 1 + 9




    15




    (2 + 0 + 1)! + 9




    16




    (2 + 0!)! + 1 + 9




    17




    20 - (1 * sqrt(9))




    18




    (2 + (0 * 1)) * 9




    19




    20 - 1^9




    20




    20 * 1^9




    21




    20 + 1^9




    22




    2 + 0! + 19




    23




    20 + 1 * sqrt(9)




    24




    20 + 1 + sqrt(9)




    25




    2 || (0! + 1 + sqrt (9))




    explained:




    Ok, this one needs explanation. The operation for "grouping" is known as concatenation and represented by ||. Basically this means push the digits together: 2 || 0 = 20. However, just like any operation, you can represent either side not by a number but by an equation on its own. So 0! + 1 + sqrt(9) = 5, meaning the above represents 2 || 5, qed.




    26




    2 || ((0! + 1) * sqrt(9))




    27




    (2 + 0 + 1) * 9




    28




    ((2 + 0!) || 1) - sqrt(9)




    29




    (2 + (0 * 1)) || 9




    30




    20 + 1 + 9








    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 7 hours ago

























    answered 8 hours ago









    flashstorm

    7229




    7229












    • edited for clarity
      – flashstorm
      7 hours ago










    • @flashstorm Um... $3ne 2+0^{19}$
      – Frpzzd
      7 hours ago






    • 1




      was missing an !
      – flashstorm
      7 hours ago










    • Ding! Fries are done :)
      – flashstorm
      7 hours ago


















    • edited for clarity
      – flashstorm
      7 hours ago










    • @flashstorm Um... $3ne 2+0^{19}$
      – Frpzzd
      7 hours ago






    • 1




      was missing an !
      – flashstorm
      7 hours ago










    • Ding! Fries are done :)
      – flashstorm
      7 hours ago
















    edited for clarity
    – flashstorm
    7 hours ago




    edited for clarity
    – flashstorm
    7 hours ago












    @flashstorm Um... $3ne 2+0^{19}$
    – Frpzzd
    7 hours ago




    @flashstorm Um... $3ne 2+0^{19}$
    – Frpzzd
    7 hours ago




    1




    1




    was missing an !
    – flashstorm
    7 hours ago




    was missing an !
    – flashstorm
    7 hours ago












    Ding! Fries are done :)
    – flashstorm
    7 hours ago




    Ding! Fries are done :)
    – flashstorm
    7 hours ago











    5














    $$1=20-19$$
    $$2=2+0cdot 19=20div(1+9)$$
    $$3=2cdot 0cdot 1+sqrt{9}=-(2+0+1)!+9$$
    $$4=2^{0-1+sqrt{9}}$$
    $$5=20div (1+sqrt{9})$$
    $$6=(2cdot 0cdot 1+sqrt{9})!$$
    $$7=-2-0cdot 1+9$$
    $$8=2^{0cdot 1+sqrt{9}}$$
    $$9=2cdot 0cdot 1+9$$
    $$10=2cdot 0+1+9=20-1-9$$
    $$11=2+0cdot 1+9=20-1cdot 9=2^0+1+9$$
    $$12=2+0+1+9=20+1-9$$
    $$13=2+0!+1+9=2^{0!+1}+9$$
    $$14=(2+0!)!-1+9$$
    $$15=(2+0+1)!+9$$
    $$16=2^{0+1+sqrt{9}}$$
    $$17=20-sqrt{1cdot 9}$$
    $$18=20+1-sqrt{9}$$
    $$19=2cdot 0+19$$
    $$20=2^0+19$$
    $$21=20+1^9$$
    $$22=2cdot (0!+1+9)$$
    $$23=20+sqrt{1cdot 9}$$
    $$24=2^{0-1+sqrt{9}}!=20+1+sqrt{9}$$
    $$25=(2+0!)!+19$$
    $$26=2+0+(1+sqrt{9})!$$
    $$27=(2+0+1)^{sqrt{9}}$$
    $$28=20-1+9$$
    $$29=20+1cdot 9=20cdot 1+9$$
    $$30=20+1+9$$



    DONE!





    share























    • All finished now! :D
      – Frpzzd
      7 hours ago










    • Great :) But Spoiler-Tags would be nice ;)
      – André
      5 hours ago












    • @André Oh, sorry! I can't figure out how to get the mathjax to work inside of a spoiler tag. D:<
      – Frpzzd
      5 hours ago






    • 1




      @André Also: I've been trying to do 31, but it actually seems to be much harder than any of the previous ones! Looks like you picked just the right number to stop on! XD
      – Frpzzd
      5 hours ago










    • Your answer for 6 is incorrect; that expression comes out to 2. However, adding parentheses around part and another factorial will make it work.
      – user1207177
      5 hours ago


















    5














    $$1=20-19$$
    $$2=2+0cdot 19=20div(1+9)$$
    $$3=2cdot 0cdot 1+sqrt{9}=-(2+0+1)!+9$$
    $$4=2^{0-1+sqrt{9}}$$
    $$5=20div (1+sqrt{9})$$
    $$6=(2cdot 0cdot 1+sqrt{9})!$$
    $$7=-2-0cdot 1+9$$
    $$8=2^{0cdot 1+sqrt{9}}$$
    $$9=2cdot 0cdot 1+9$$
    $$10=2cdot 0+1+9=20-1-9$$
    $$11=2+0cdot 1+9=20-1cdot 9=2^0+1+9$$
    $$12=2+0+1+9=20+1-9$$
    $$13=2+0!+1+9=2^{0!+1}+9$$
    $$14=(2+0!)!-1+9$$
    $$15=(2+0+1)!+9$$
    $$16=2^{0+1+sqrt{9}}$$
    $$17=20-sqrt{1cdot 9}$$
    $$18=20+1-sqrt{9}$$
    $$19=2cdot 0+19$$
    $$20=2^0+19$$
    $$21=20+1^9$$
    $$22=2cdot (0!+1+9)$$
    $$23=20+sqrt{1cdot 9}$$
    $$24=2^{0-1+sqrt{9}}!=20+1+sqrt{9}$$
    $$25=(2+0!)!+19$$
    $$26=2+0+(1+sqrt{9})!$$
    $$27=(2+0+1)^{sqrt{9}}$$
    $$28=20-1+9$$
    $$29=20+1cdot 9=20cdot 1+9$$
    $$30=20+1+9$$



    DONE!





    share























    • All finished now! :D
      – Frpzzd
      7 hours ago










    • Great :) But Spoiler-Tags would be nice ;)
      – André
      5 hours ago












    • @André Oh, sorry! I can't figure out how to get the mathjax to work inside of a spoiler tag. D:<
      – Frpzzd
      5 hours ago






    • 1




      @André Also: I've been trying to do 31, but it actually seems to be much harder than any of the previous ones! Looks like you picked just the right number to stop on! XD
      – Frpzzd
      5 hours ago










    • Your answer for 6 is incorrect; that expression comes out to 2. However, adding parentheses around part and another factorial will make it work.
      – user1207177
      5 hours ago
















    5












    5








    5






    $$1=20-19$$
    $$2=2+0cdot 19=20div(1+9)$$
    $$3=2cdot 0cdot 1+sqrt{9}=-(2+0+1)!+9$$
    $$4=2^{0-1+sqrt{9}}$$
    $$5=20div (1+sqrt{9})$$
    $$6=(2cdot 0cdot 1+sqrt{9})!$$
    $$7=-2-0cdot 1+9$$
    $$8=2^{0cdot 1+sqrt{9}}$$
    $$9=2cdot 0cdot 1+9$$
    $$10=2cdot 0+1+9=20-1-9$$
    $$11=2+0cdot 1+9=20-1cdot 9=2^0+1+9$$
    $$12=2+0+1+9=20+1-9$$
    $$13=2+0!+1+9=2^{0!+1}+9$$
    $$14=(2+0!)!-1+9$$
    $$15=(2+0+1)!+9$$
    $$16=2^{0+1+sqrt{9}}$$
    $$17=20-sqrt{1cdot 9}$$
    $$18=20+1-sqrt{9}$$
    $$19=2cdot 0+19$$
    $$20=2^0+19$$
    $$21=20+1^9$$
    $$22=2cdot (0!+1+9)$$
    $$23=20+sqrt{1cdot 9}$$
    $$24=2^{0-1+sqrt{9}}!=20+1+sqrt{9}$$
    $$25=(2+0!)!+19$$
    $$26=2+0+(1+sqrt{9})!$$
    $$27=(2+0+1)^{sqrt{9}}$$
    $$28=20-1+9$$
    $$29=20+1cdot 9=20cdot 1+9$$
    $$30=20+1+9$$



    DONE!





    share














    $$1=20-19$$
    $$2=2+0cdot 19=20div(1+9)$$
    $$3=2cdot 0cdot 1+sqrt{9}=-(2+0+1)!+9$$
    $$4=2^{0-1+sqrt{9}}$$
    $$5=20div (1+sqrt{9})$$
    $$6=(2cdot 0cdot 1+sqrt{9})!$$
    $$7=-2-0cdot 1+9$$
    $$8=2^{0cdot 1+sqrt{9}}$$
    $$9=2cdot 0cdot 1+9$$
    $$10=2cdot 0+1+9=20-1-9$$
    $$11=2+0cdot 1+9=20-1cdot 9=2^0+1+9$$
    $$12=2+0+1+9=20+1-9$$
    $$13=2+0!+1+9=2^{0!+1}+9$$
    $$14=(2+0!)!-1+9$$
    $$15=(2+0+1)!+9$$
    $$16=2^{0+1+sqrt{9}}$$
    $$17=20-sqrt{1cdot 9}$$
    $$18=20+1-sqrt{9}$$
    $$19=2cdot 0+19$$
    $$20=2^0+19$$
    $$21=20+1^9$$
    $$22=2cdot (0!+1+9)$$
    $$23=20+sqrt{1cdot 9}$$
    $$24=2^{0-1+sqrt{9}}!=20+1+sqrt{9}$$
    $$25=(2+0!)!+19$$
    $$26=2+0+(1+sqrt{9})!$$
    $$27=(2+0+1)^{sqrt{9}}$$
    $$28=20-1+9$$
    $$29=20+1cdot 9=20cdot 1+9$$
    $$30=20+1+9$$



    DONE!






    share













    share


    share








    edited 5 hours ago

























    answered 7 hours ago









    Frpzzd

    831120




    831120












    • All finished now! :D
      – Frpzzd
      7 hours ago










    • Great :) But Spoiler-Tags would be nice ;)
      – André
      5 hours ago












    • @André Oh, sorry! I can't figure out how to get the mathjax to work inside of a spoiler tag. D:<
      – Frpzzd
      5 hours ago






    • 1




      @André Also: I've been trying to do 31, but it actually seems to be much harder than any of the previous ones! Looks like you picked just the right number to stop on! XD
      – Frpzzd
      5 hours ago










    • Your answer for 6 is incorrect; that expression comes out to 2. However, adding parentheses around part and another factorial will make it work.
      – user1207177
      5 hours ago




















    • All finished now! :D
      – Frpzzd
      7 hours ago










    • Great :) But Spoiler-Tags would be nice ;)
      – André
      5 hours ago












    • @André Oh, sorry! I can't figure out how to get the mathjax to work inside of a spoiler tag. D:<
      – Frpzzd
      5 hours ago






    • 1




      @André Also: I've been trying to do 31, but it actually seems to be much harder than any of the previous ones! Looks like you picked just the right number to stop on! XD
      – Frpzzd
      5 hours ago










    • Your answer for 6 is incorrect; that expression comes out to 2. However, adding parentheses around part and another factorial will make it work.
      – user1207177
      5 hours ago


















    All finished now! :D
    – Frpzzd
    7 hours ago




    All finished now! :D
    – Frpzzd
    7 hours ago












    Great :) But Spoiler-Tags would be nice ;)
    – André
    5 hours ago






    Great :) But Spoiler-Tags would be nice ;)
    – André
    5 hours ago














    @André Oh, sorry! I can't figure out how to get the mathjax to work inside of a spoiler tag. D:<
    – Frpzzd
    5 hours ago




    @André Oh, sorry! I can't figure out how to get the mathjax to work inside of a spoiler tag. D:<
    – Frpzzd
    5 hours ago




    1




    1




    @André Also: I've been trying to do 31, but it actually seems to be much harder than any of the previous ones! Looks like you picked just the right number to stop on! XD
    – Frpzzd
    5 hours ago




    @André Also: I've been trying to do 31, but it actually seems to be much harder than any of the previous ones! Looks like you picked just the right number to stop on! XD
    – Frpzzd
    5 hours ago












    Your answer for 6 is incorrect; that expression comes out to 2. However, adding parentheses around part and another factorial will make it work.
    – user1207177
    5 hours ago






    Your answer for 6 is incorrect; that expression comes out to 2. However, adding parentheses around part and another factorial will make it work.
    – user1207177
    5 hours ago













    1














    1-16 were done as of the time I started this, so I wanted to focus only on 17-30, using answers different from ones that I've already seen. Others will be included if I find solutions that I like.



    8:




    $8 = sqrt{(2^{0!+1}!!)!! / (sqrt9)!}$




    16:




    $16 = ((2 + 0 + 1)!)!! / sqrt9 = 20 - 1 - sqrt9$




    17:




    $17 = (2 + 0! + 1)!! + 9$




    18:




    $18 = (2^0 + 1) cdot 9 = 2 cdot (0+1)cdot 9 = 2^{0+1} cdot 9$




    19:




    $19 = 2 cdot 0 + 19$




    20:




    $20 = 2^0 + 19 = 20! / 19!$




    21:




    $21 = 20 + 1^9$




    22:




    $22 = 20 - 1 + sqrt9$




    23:




    $23 = 20 + 1 cdot sqrt9$




    24:




    $24 = 2^{0! + 1} cdot (sqrt9)! = 2^{0! + 1}!! cdot sqrt9 = (2+0!+1)!! cdot sqrt9 = ((2 + 0!)! - 1)!! + 9$




    25:




    $25 = (2 + 0!)! + 19$




    26:




    $26 = 20 + 1 cdot (sqrt9)!$




    27:




    $27 = 2^{0! + 1}! + sqrt9$




    28: Can't get one different from what I've already seen in other answers. Will maybe try later.



    29:




    $29 = 20 + 1 cdot 9$




    30:




    $30 = 2^{0! + 1}! + (sqrt9)!$




    I know we're supposed to stop at 30, but I accidentally found this fun one:



    32:




    $32 = sqrt{20!! / (1 + 9)!}$







    share|improve this answer




























      1














      1-16 were done as of the time I started this, so I wanted to focus only on 17-30, using answers different from ones that I've already seen. Others will be included if I find solutions that I like.



      8:




      $8 = sqrt{(2^{0!+1}!!)!! / (sqrt9)!}$




      16:




      $16 = ((2 + 0 + 1)!)!! / sqrt9 = 20 - 1 - sqrt9$




      17:




      $17 = (2 + 0! + 1)!! + 9$




      18:




      $18 = (2^0 + 1) cdot 9 = 2 cdot (0+1)cdot 9 = 2^{0+1} cdot 9$




      19:




      $19 = 2 cdot 0 + 19$




      20:




      $20 = 2^0 + 19 = 20! / 19!$




      21:




      $21 = 20 + 1^9$




      22:




      $22 = 20 - 1 + sqrt9$




      23:




      $23 = 20 + 1 cdot sqrt9$




      24:




      $24 = 2^{0! + 1} cdot (sqrt9)! = 2^{0! + 1}!! cdot sqrt9 = (2+0!+1)!! cdot sqrt9 = ((2 + 0!)! - 1)!! + 9$




      25:




      $25 = (2 + 0!)! + 19$




      26:




      $26 = 20 + 1 cdot (sqrt9)!$




      27:




      $27 = 2^{0! + 1}! + sqrt9$




      28: Can't get one different from what I've already seen in other answers. Will maybe try later.



      29:




      $29 = 20 + 1 cdot 9$




      30:




      $30 = 2^{0! + 1}! + (sqrt9)!$




      I know we're supposed to stop at 30, but I accidentally found this fun one:



      32:




      $32 = sqrt{20!! / (1 + 9)!}$







      share|improve this answer


























        1












        1








        1






        1-16 were done as of the time I started this, so I wanted to focus only on 17-30, using answers different from ones that I've already seen. Others will be included if I find solutions that I like.



        8:




        $8 = sqrt{(2^{0!+1}!!)!! / (sqrt9)!}$




        16:




        $16 = ((2 + 0 + 1)!)!! / sqrt9 = 20 - 1 - sqrt9$




        17:




        $17 = (2 + 0! + 1)!! + 9$




        18:




        $18 = (2^0 + 1) cdot 9 = 2 cdot (0+1)cdot 9 = 2^{0+1} cdot 9$




        19:




        $19 = 2 cdot 0 + 19$




        20:




        $20 = 2^0 + 19 = 20! / 19!$




        21:




        $21 = 20 + 1^9$




        22:




        $22 = 20 - 1 + sqrt9$




        23:




        $23 = 20 + 1 cdot sqrt9$




        24:




        $24 = 2^{0! + 1} cdot (sqrt9)! = 2^{0! + 1}!! cdot sqrt9 = (2+0!+1)!! cdot sqrt9 = ((2 + 0!)! - 1)!! + 9$




        25:




        $25 = (2 + 0!)! + 19$




        26:




        $26 = 20 + 1 cdot (sqrt9)!$




        27:




        $27 = 2^{0! + 1}! + sqrt9$




        28: Can't get one different from what I've already seen in other answers. Will maybe try later.



        29:




        $29 = 20 + 1 cdot 9$




        30:




        $30 = 2^{0! + 1}! + (sqrt9)!$




        I know we're supposed to stop at 30, but I accidentally found this fun one:



        32:




        $32 = sqrt{20!! / (1 + 9)!}$







        share|improve this answer














        1-16 were done as of the time I started this, so I wanted to focus only on 17-30, using answers different from ones that I've already seen. Others will be included if I find solutions that I like.



        8:




        $8 = sqrt{(2^{0!+1}!!)!! / (sqrt9)!}$




        16:




        $16 = ((2 + 0 + 1)!)!! / sqrt9 = 20 - 1 - sqrt9$




        17:




        $17 = (2 + 0! + 1)!! + 9$




        18:




        $18 = (2^0 + 1) cdot 9 = 2 cdot (0+1)cdot 9 = 2^{0+1} cdot 9$




        19:




        $19 = 2 cdot 0 + 19$




        20:




        $20 = 2^0 + 19 = 20! / 19!$




        21:




        $21 = 20 + 1^9$




        22:




        $22 = 20 - 1 + sqrt9$




        23:




        $23 = 20 + 1 cdot sqrt9$




        24:




        $24 = 2^{0! + 1} cdot (sqrt9)! = 2^{0! + 1}!! cdot sqrt9 = (2+0!+1)!! cdot sqrt9 = ((2 + 0!)! - 1)!! + 9$




        25:




        $25 = (2 + 0!)! + 19$




        26:




        $26 = 20 + 1 cdot (sqrt9)!$




        27:




        $27 = 2^{0! + 1}! + sqrt9$




        28: Can't get one different from what I've already seen in other answers. Will maybe try later.



        29:




        $29 = 20 + 1 cdot 9$




        30:




        $30 = 2^{0! + 1}! + (sqrt9)!$




        I know we're supposed to stop at 30, but I accidentally found this fun one:



        32:




        $32 = sqrt{20!! / (1 + 9)!}$








        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 6 hours ago

























        answered 7 hours ago









        tilper

        862514




        862514






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Puzzling Stack Exchange!


            • 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.


            Use MathJax to format equations. MathJax reference.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fpuzzling.stackexchange.com%2fquestions%2f77961%2fcreate-the-numbers-1-30-using-the-digits-2-0-1-9-in-this-particular-order%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            Understanding the information contained in the Deep Space Network XML data?

            Ross-on-Wye

            Eastern Orthodox Church