Understanding the Permitted Use of Double Summation in Math

  • Context: Undergrad 
  • Thread starter Thread starter IniquiTrance
  • Start date Start date
  • Tags Tags
    Summation
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
2 replies · 2K views
IniquiTrance
Messages
185
Reaction score
0
If I know that [itex]\sum_{k=1}^n a_{ik} = 1[/itex] and [itex]\sum_{j=1}^n b_{kj} = 1[/itex], why is the following permitted?

[tex]\sum_{j=1}^n \sum_{k=1}^n a_{ik}b_{kj} = \left(\sum_{j=1}^n b_{kj}\right) \left(\sum_{k=1}^n a_{ik}\right) = 1\cdot 1 = 1[/tex]


Thanks!
 
on Phys.org
It's not permitted. What you wrote makes no sense since you sum over k and one of the [itex]b_{kj}[/itex] is outside that sum. That is not allowed.

What you could do is:

[tex]\sum_{j=1}^n\sum_{k=1}^n a_{ik}b{kj}= \sum_{k=1}^n \sum_{j=1}^n a_{ik}b_{kj} = \sum_{k=1}^n \left(a_{ik} \sum_{j=1}^n b_{kj}\right)= \sum_{k=1}^n a_{ik}=1[/tex]
 
Thank you very much. I knew I wasn't understanding something.