It is known that arithmetic operations of addition and multiplication are binary operations that take in two inputs and give out a single output. However, consider the following scenario:
Suppose I have a jar containing some number of balls, and I give you some balls to add to the jar. If I asked you to add three balls into the jar, then that's easy, you'd just toss em in there. However, let's say I asked you to double the number of balls in the jar, you wouldn't be able to do that unless I showed you many balls were in the jar.
This is sort of strange: We require to know both inputs for multiplication but we don't require to know both to do addition. Why is this so when they are both known to be binary operators?
You still won't know how many balls are inside the jar until you look inside the jar. You can't add two numbers when you only know one of the numbers...