Quark Itself
- 25
- 0
This is neither homework nor independent study, it was a brain teaser( or so you could call it) I found.
A new mathematical operation has been implemented , call it #
It is used within our knowledge of numbers( it operates with all sets of numbers) and works together with our known operations ( +,-,*,/ etc.)
It also functions in such ways that, for all real values x and y
x # 0 = x (It's # identity is 0, I assumed)
x # y = y # x (it is also commutative)
(x+1) # y = (x # 1) + y + 1
From the information given, find some arbitrary value ; say 12 # 5
Attempt:
Also, I stumbled upon contradiction.
Let x = 5 and y = 0, then using the last rule
(5+1) # 0 = (5 # 1) + 0 + 1
6 # 0 = (5 # 1) +1
but 6#0 should be 6 by one of the rules
so 5#1 = 6-1 = 5
Now, let y = 5 and x = 0, then:
(0+1) # 5 = (0 # 1) + 5 +1
1 # 5 = (0 # 1) +6
Since they commute, one can look at it this way:
5#1 = 1#0 +6
RHS = 5 from test 1
LHS = 1 + 6 = 7 from the rules and addition
Any suggestion would be well appreciated !
A new mathematical operation has been implemented , call it #
It is used within our knowledge of numbers( it operates with all sets of numbers) and works together with our known operations ( +,-,*,/ etc.)
It also functions in such ways that, for all real values x and y
x # 0 = x (It's # identity is 0, I assumed)
x # y = y # x (it is also commutative)
(x+1) # y = (x # 1) + y + 1
From the information given, find some arbitrary value ; say 12 # 5
Attempt:
Also, I stumbled upon contradiction.
Let x = 5 and y = 0, then using the last rule
(5+1) # 0 = (5 # 1) + 0 + 1
6 # 0 = (5 # 1) +1
but 6#0 should be 6 by one of the rules
so 5#1 = 6-1 = 5
Now, let y = 5 and x = 0, then:
(0+1) # 5 = (0 # 1) + 5 +1
1 # 5 = (0 # 1) +6
Since they commute, one can look at it this way:
5#1 = 1#0 +6
RHS = 5 from test 1
LHS = 1 + 6 = 7 from the rules and addition
Any suggestion would be well appreciated !