Multiplication -- prove this one by induction

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 2K views
rb120134
Messages
10
Reaction score
0
Homework Statement
Prove by induction that for any natural numbers n and m , n x (m++)= (n x m) + n
Relevant Equations
n x (m++) = (n x m) +n
Prove by induction that for any natural numbers n and m , n x (m++)= (n x m) + n

The base case, n=0 gives 0 x m++=(0 x m) +0 gives 0=0
Now assume n x (m++) = (n x m) +n
For n++ we get

n++(m++)=((n++)m) + n++

from this point I am stuck, how can I prove both sides are the same?
 
Physics news on Phys.org
What do you mean by m++ ? In mathematics, this means nothing. Do you mean the programming language C convention? But then, actually n * (m++) == n *m is true, while n * (++m) == n * m + n is true.
 
PAllen said:
What do you mean by m++ ? In mathematics, this means nothing. Do you mean the programming language C convention? But then, actually n * (m++) == n *m is true, while n * (++m) == n * m + n is true.
The OP posted a similar question using this notation in another thread (https://www.physicsforums.com/threads/proof-multiplication-is-commutative.782057/#post-6537515).

I believe it is less sophisticated notation than is used in C et al, and has nothing to do with pre- or post-increment. I believe that the notation m++ is just shorthand for m + 1.
 
Mark44 said:
The OP posted a similar question using this notation in another thread (https://www.physicsforums.com/threads/proof-multiplication-is-commutative.782057/#post-6537515).

I believe it is less sophisticated notation than is used in C et al, and has nothing to do with pre- or post-increment. I believe that the notation m++ is just shorthand for m + 1.
shorthand in what way? Same number of characters, and + needs right pinky reach as well as left pinky shift, while 1 just needs left pinky reach (at least on my keyboard).