43

Can you find a way to make 1 1 1 1 = 5 by adding any operations or symbols? You can use symbols such as these: +, -, *, !, ^, (). It is not limited to this list.

Good Luck!

P.S. You can not add any other numbers to the equation.

JMP
  • 35,612
  • 7
  • 78
  • 151
SteamCode
  • 3,181
  • 3
  • 15
  • 32

10 Answers10

93

How about

$(1+1+1)!-1$ = $6 -1$ = $5$

SteamCode
  • 3,181
  • 3
  • 15
  • 32
Reinis Mazeiks
  • 3,012
  • 1
  • 17
  • 30
  • I'd say this is the better answer than mine, as mine concatenates two digits. – Phylyp Jan 09 '18 at 02:54
  • 3
    @Phylyp, that doesn't necessarily make your answer worse; the OP said nothing about concatenation, so we can just assume that we can leave a space blank if we want to :). Your answer is perfectly valid, I think. – Reinis Mazeiks Jan 09 '18 at 02:57
  • @R.M That is true. I never said anything about concatenation. The answer is perfectly valid. – SteamCode Jan 09 '18 at 03:52
  • The interesting question is if you can do any better with the given symbols, or at least alternatively - and if not, how can you prove this? – The_Sympathizer Jan 09 '18 at 08:34
  • @StrangePhoton, I saw your edit attempt – but my answer uses only 4 ones: (1+1+1)!-1. You might be confused about the 1 that appeared when I was solving the question (the expression is equivalent to 6-1). Only the numbers in the first expression are my answer. (And welcome to Puzzling SE! :) – Reinis Mazeiks Jan 10 '18 at 13:12
53

How about such a variant?

++(1+1+1+1)=5

spacediver
  • 103
  • 3
KstuRoot
  • 559
  • 3
  • 4
42

Here's another solution:

$1$E$1$ $/ (1 + 1)$ = $5$

Where:

E is the exponential notation symbol.

i.e. 1E1 = $1 \times 10^1$

SteamCode
  • 3,181
  • 3
  • 15
  • 32
Ergwun
  • 2,780
  • 1
  • 12
  • 14
36

1 << 1 << $1 + 1 = 5$
where << is a bitwise-shift

1 << 1 = (binary) $10 = 2$
2 << 1 = (binary) $100 = 4$, then finally add 1 to get 5

SteamCode
  • 3,181
  • 3
  • 15
  • 32
Jonah Haney
  • 469
  • 3
  • 6
  • Welcome to Puzzling.SE! Note, however, that the question asks for making the result of the operation to be 5, not 6. If you were aware of this and wanted to post it anyway for some reason, please address that in your answer. – Lolgast Jan 09 '18 at 06:25
  • 1
    @Lolgast. Nope. I just really derped on that one – Jonah Haney Jan 09 '18 at 06:44
  • @Lolgast. Found a way to fix it :) – Jonah Haney Jan 09 '18 at 07:38
  • 1
    Ah, we all derp sometimes :) Hopefully the downvoter will be kind enough to remove his downvote since this is now a valid answer (assuming he downvoted for not being valid). Eitherway I've upvoted – Lolgast Jan 09 '18 at 07:45
  • 1
    you may need parens in some programming languages such as Python: (1<<1<<1)+1 – jfs Jan 09 '18 at 13:03
  • 1
    @jfs Agree! Otherwise we may get (1 << 1) << (1 + 1) or 1 << (1 << (1 + 1)), for example, depending on the language. That is 8 or 16, respectively. – Jeppe Stig Nielsen Jan 09 '18 at 14:58
35

A little contrived:

$⌊ 11 ÷ (1 + 1) ⌋ $

Explanation:

$⌊ 11 ÷ (1 + 1) ⌋$ = $⌊ 11 ÷ 2 ⌋$ = $⌊ 5.5 ⌋ = 5$
Where ⌊ ⌋ is the round down operator (a.k.a. floor operator).

SteamCode
  • 3,181
  • 3
  • 15
  • 32
Phylyp
  • 9,160
  • 2
  • 37
  • 62
  • 2
  • 1
    @jfs That would be Python 3. In Python 2 you can get away with 11 / (1+1) That being said, these comments spoil a bit, though. – Arthur Jan 09 '18 at 13:24
  • Not contrived: you could just concatenate the first two 1s if lexical operations are permitted. OP just suggests symbols and does specify if operations must be logical vs lexical. – Cloud Jan 09 '18 at 23:47
  • @Arthur // has been in Python since 2.2. It just wasn't necessary until / was redefined to always mean floating-point division in 3.0 (or via the __future__ mechanism. – chepner Jan 10 '18 at 01:21
27

Here's another way:

$\frac{1}{\sqrt{.\bar1}}+1+1=5$

Inside the square root is $.\bar1$, which is a recurring decimal equal to $1/9$.
The square root of $1/9$ is $1/3$, so the first fraction equals $3$.

Or, using just three 1s:

$\frac{1}{.1+.1}=5$

Lots of ways to add a fourth $1$ to that, of course.

nickgard
  • 1,949
  • 1
  • 13
  • 15
26

Slightly stretching the definition of 'adding a symbol' here:

$1+1+1+1 <= 5$

Or, adding only a single symbol :

$1111 >= 5$

SteamCode
  • 3,181
  • 3
  • 15
  • 32
Scott
  • 2,087
  • 12
  • 13
8

Using the Euler totient $\varphi$:

$\varphi(11)/(1+1) = 5$

Using $\lim_{x\rightarrow\infty}$ (which contains no numbers :) there are all sorts of solutions, e.g.

$\lim_{x\rightarrow\infty} (1+1+1+1)/x = \lim_{x\rightarrow\infty} 5/x$

Using the symbol "/" gives a subtle solution:

$1111 \neq 5$

Edit: Using $\ln$:

$\lceil \ln(11)\times (1+1)\rceil = 5$

jfs
  • 103
  • 3
Yly
  • 759
  • 1
  • 4
  • 7
3

Since the question allows to add symbols, we could do:

$1111 := 5$

Which defines 1111 to be 5. That can be seen as overloading a number to be a variable. In the same way as you use other symbols ($x,a,α,…$) as names for variables.

Another solution is:

$\bar{1} = \bar{5}$
which uses the fact that these residue classes are equal in $ℤ/2ℤ$. I couldn't find a good English wikipedia page for explanation. On this wiki page the second example explains what $ℤ/2ℤ$ is. If you can speak German this wikipedia article is pretty good.
Edit: Maybe you are more familiar with the notation $[1]=[5]$, I just favor the bar as you rarely can confuse it with other bar-notation such as complex numbers.

A third solution idea, which is not working so far, is:

We know that $\sum_{i=0}^{∞}\frac{1}{2^n}= 2$, so $\sum_{i=-1}^∞\frac{1}{(1+1)^n}=3$. The problem is - I already used all of my four $1$s for this...

P. Siehr
  • 139
  • 4
  • Yeah, in my notation $[n]={1,2,\ldots , n}$. Some people might use $[n]$ to mean "to round off to the closest integer to $n$" but I use $\lfloor n\rceil$ for that :P – Mr Pie Aug 27 '18 at 11:40
2

$ 1+1+1-1 = ⌊\sqrt{5}⌋$

Of course, with enough nested square roots and rounding you can turn any positive number to 1.

Klaws
  • 241
  • 1
  • 4