SlideShare une entreprise Scribd logo
1  sur  14
Télécharger pour lire hors ligne
Outline
                 Operators
               Summation
         Double summation




Applied Statistics for Economics
     Summation Operator

        SFC - juliohuato@gmail.com


                    Spring 2012




 SFC - juliohuato@gmail.com   Applied Statistics for Economics Summation Operator
Outline
                            Operators
                          Summation
                    Double summation




Operators


Summation


Double summation




            SFC - juliohuato@gmail.com   Applied Statistics for Economics Summation Operator
Outline
                                 Operators
                               Summation
                         Double summation


On math as a language


   Math is, among other things, a language. We use language to
   think ideas and share them with others.
   In principle, the same ideas we express with math symbols we can
   express with words (which are also symbols). Math symbols are
   just abbreviations for words.
   However, when we abbreviate and express our ideas in math
   language, we economize resources. It is easier, for example, to
   make the shared or communicable meaning of words clearer and
   more precise when we use math symbols.



                 SFC - juliohuato@gmail.com   Applied Statistics for Economics Summation Operator
Outline
                                 Operators
                               Summation
                         Double summation


Operators
   Operators are mathematical symbols that compress or abbreviate
   further our math language. That is why they can be extremely
   powerful tools in econometrics.
   These are some familiar examples of operators:
       Addition: +
       Subtraction: −
       Multiplication: ×
       Division: ÷
   In the context of a statement in math language, these operators
   tell us to execute specific operations: (a + b) add b to a; (a − b)
   subtract b from a; (a × b) multiply b times the number a; (a ÷ b)
   divide a by b (or b into a).
                 SFC - juliohuato@gmail.com   Applied Statistics for Economics Summation Operator
Outline
                                Operators
                              Summation
                        Double summation


Summation Operator (                )




  The summation operator is heavily used in econometrics.
  We now let a, b, k, and n be constant numbers, and x, y , and i be
  variables. The following are some properties of the summation
  operator.




                SFC - juliohuato@gmail.com   Applied Statistics for Economics Summation Operator
Outline
                                    Operators
                                  Summation
                            Double summation


Summation (          xi )
  Suppose we have a list of numbers (the ages of 6 students):
  20, 19, 22, 19, 21, 18. Let x be the age of a student and use the
  natural numbers (1, 2, 3, . . .) to index these ages. Thus, xi means
  the age of student i, where i = 1, 2, . . . , 6). Then:
                                                                                  6
      x1 + x2 + x3 + x4 + x5 + x6 = x1 + x2 + . . . + x6 =                             xi
                                                                                 i=1
  The last expression is the most compact. It reads: “The sum of xi ,
  where i goes from 1 to 6.” The summation operator         tells us to
  add up the values of the variable x from the first to the sixth value:
              6
                   xi = 20 + 19 + 22 + 19 + 21 + 18 = 119.
             i=1

                   SFC - juliohuato@gmail.com   Applied Statistics for Economics Summation Operator
Outline
                                          Operators
                                        Summation
                                  Double summation


Summation (              xi )


  Note the following:
                                    n            m             n
                                        xi =          xi +           xi
                                  i=1           i=1          i=m+1

  Example:
   6            3            6
        xi =         xi +         xi = (20+19+22)+(19+21+18) = 61+58 = 119.
  i=1          i=1          i=4

  We can always split the sum into various sub-sums.



                       SFC - juliohuato@gmail.com      Applied Statistics for Economics Summation Operator
Outline
                                 Operators
                               Summation
                         Double summation


Summing n times the constant number (k)


   This property also holds for the summation operator:
                                       n
                                              k = nk
                                     i=1

   Example:
                   4
                        3 = 3 + 3 + 3 + 3 = 4 × 3 = 12.
                  i=1




                 SFC - juliohuato@gmail.com      Applied Statistics for Economics Summation Operator
Outline
                                   Operators
                                 Summation
                           Double summation


Summing n times the product of a constant k and a
variable x


                                    n              n
                                        kxi = k         xi
                                  i=1             i=1

   Example:
         3                                                                      3
              5xi = 5x1 + 5x2 + 5x3 = 5(x1 + x2 + x3 ) = 5                          xi .
        i=1                                                                   i=1




                   SFC - juliohuato@gmail.com   Applied Statistics for Economics Summation Operator
Outline
                                    Operators
                                  Summation
                            Double summation


Summing the sum of two variables (x and y )

                            n                     n            n
                                (xi + yi ) =           xi +         yi
                          i=1                    i=1          i=1

   Example:
         2
              (xi + yi ) = (x1 + y1 ) + (x2 + y2 ) = x1 + y1 + x2 + y2
        i=1

                                                                          2            2
     = x1 + x2 + y1 + y2 = (x1 + x2 ) + (y1 + y2 ) =                           xi +         yi .
                                                                         i=1          i=1



                    SFC - juliohuato@gmail.com    Applied Statistics for Economics Summation Operator
Outline
                                      Operators
                                    Summation
                              Double summation


Summing the linear rule of a variable (x)

   The linear rule of a variable x is: a + bx. E.g.: 4 + 5x.
   If the n values of the variables are indexed (i = 1, 2, . . . , n), then
   we can express the sum of this linear rule of x over its n values as
   follows:
                               n                              n
                                    (a + bxi ) = na + b           xi
                              i=1                           i=1

   Example:
    3                    3           3                             3                       3
         (4 + 5xi ) =         4+          5xi = (3 × 4) + 5             xi = 12 + 5            xi .
   i=1                  i=1         i=1                           i=1                    i=1



                    SFC - juliohuato@gmail.com    Applied Statistics for Economics Summation Operator
Outline
                                 Operators
                               Summation
                         Double summation


Double summation



  The double summation operator is used to sum up twice for the
  same variable:
                  n    m              n
                           xij =          (xi1 + xi2 + . . . + xim )
                 i=1 j=1            i=1

  = (x11 +x21 +. . .+xn1 )+(x12 +x22 +. . .+xn2 )+. . .+(x1m +x2m +. . .+xnm )




                 SFC - juliohuato@gmail.com    Applied Statistics for Economics Summation Operator
Outline
                                Operators
                              Summation
                        Double summation


Double summation



  A property of the double summation operator is that the
  summations are interchangeable:
                            n    m            m     n
                                      xij =             xij .
                          i=1 j=1             i=1 j=1




                SFC - juliohuato@gmail.com    Applied Statistics for Economics Summation Operator
Outline
                                    Operators
                                  Summation
                            Double summation


The product operator

   The product operator ( ) is defined as:
                                 n
                                      xi = x1 · x2 · · · xn .
                                i=1

   Example: Let x be a list of numbers: 20, 19, 22. Then,
                        3
                             xi = 20 × 19 × 22 = 8, 360.
                       i=1
               n
   Note that   i=1 k = k n . The n-product of a constant is the
   constant raised to the n-th power.


                 SFC - juliohuato@gmail.com      Applied Statistics for Economics Summation Operator

Contenu connexe

Tendances

[DL輪読会]Flow-based Deep Generative Models
[DL輪読会]Flow-based Deep Generative Models[DL輪読会]Flow-based Deep Generative Models
[DL輪読会]Flow-based Deep Generative ModelsDeep Learning JP
 
基底変換、固有値・固有ベクトル、そしてその先
基底変換、固有値・固有ベクトル、そしてその先基底変換、固有値・固有ベクトル、そしてその先
基底変換、固有値・固有ベクトル、そしてその先Taketo Sano
 
パターン認識と機械学習入門
パターン認識と機械学習入門パターン認識と機械学習入門
パターン認識と機械学習入門Momoko Hayamizu
 
Rで計量時系列分析~CRANパッケージ総ざらい~
Rで計量時系列分析~CRANパッケージ総ざらい~ Rで計量時系列分析~CRANパッケージ総ざらい~
Rで計量時系列分析~CRANパッケージ総ざらい~ Takashi J OZAKI
 
AutoEncoderで特徴抽出
AutoEncoderで特徴抽出AutoEncoderで特徴抽出
AutoEncoderで特徴抽出Kai Sasaki
 
優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案Masanori Kado
 
ウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心に
ウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心にウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心に
ウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心にRyosuke Tachibana
 
تصميم خطة البحث العلمي
تصميم خطة البحث العلميتصميم خطة البحث العلمي
تصميم خطة البحث العلميBamba A.
 
因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説Shiga University, RIKEN
 
感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...
感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...
感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...Masatoshi Yoshida
 
【論文調査】XAI技術の効能を ユーザ実験で評価する研究
【論文調査】XAI技術の効能を ユーザ実験で評価する研究【論文調査】XAI技術の効能を ユーザ実験で評価する研究
【論文調査】XAI技術の効能を ユーザ実験で評価する研究Satoshi Hara
 
パターン認識第9章 学習ベクトル量子化
パターン認識第9章 学習ベクトル量子化パターン認識第9章 学習ベクトル量子化
パターン認識第9章 学習ベクトル量子化Miyoshi Yuya
 
研究発表のためのプレゼンテーション技術
研究発表のためのプレゼンテーション技術研究発表のためのプレゼンテーション技術
研究発表のためのプレゼンテーション技術Shinnosuke Takamichi
 
文脈自由文法の話
文脈自由文法の話文脈自由文法の話
文脈自由文法の話kogecoo
 
音声の声質を変換する技術とその応用
音声の声質を変換する技術とその応用音声の声質を変換する技術とその応用
音声の声質を変換する技術とその応用NU_I_TODALAB
 
Rと同位体分析 (Kashiwa.R#8)
Rと同位体分析 (Kashiwa.R#8)Rと同位体分析 (Kashiwa.R#8)
Rと同位体分析 (Kashiwa.R#8)Takumi Tsutaya
 
CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1
CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1
CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1Masashi Shibata
 
Neural text-to-speech and voice conversion
Neural text-to-speech and voice conversionNeural text-to-speech and voice conversion
Neural text-to-speech and voice conversionYuki Saito
 
Pythonによる機械学習実験の管理
Pythonによる機械学習実験の管理Pythonによる機械学習実験の管理
Pythonによる機械学習実験の管理Toshihiro Kamishima
 
いともたやすく行われるえげつない研究行為
いともたやすく行われるえげつない研究行為いともたやすく行われるえげつない研究行為
いともたやすく行われるえげつない研究行為Yuki Yamada
 

Tendances (20)

[DL輪読会]Flow-based Deep Generative Models
[DL輪読会]Flow-based Deep Generative Models[DL輪読会]Flow-based Deep Generative Models
[DL輪読会]Flow-based Deep Generative Models
 
基底変換、固有値・固有ベクトル、そしてその先
基底変換、固有値・固有ベクトル、そしてその先基底変換、固有値・固有ベクトル、そしてその先
基底変換、固有値・固有ベクトル、そしてその先
 
パターン認識と機械学習入門
パターン認識と機械学習入門パターン認識と機械学習入門
パターン認識と機械学習入門
 
Rで計量時系列分析~CRANパッケージ総ざらい~
Rで計量時系列分析~CRANパッケージ総ざらい~ Rで計量時系列分析~CRANパッケージ総ざらい~
Rで計量時系列分析~CRANパッケージ総ざらい~
 
AutoEncoderで特徴抽出
AutoEncoderで特徴抽出AutoEncoderで特徴抽出
AutoEncoderで特徴抽出
 
優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案
 
ウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心に
ウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心にウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心に
ウェーブレット変換の基礎と応用事例:連続ウェーブレット変換を中心に
 
تصميم خطة البحث العلمي
تصميم خطة البحث العلميتصميم خطة البحث العلمي
تصميم خطة البحث العلمي
 
因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説
 
感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...
感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...
感覚運動随伴性、予測符号化、そして自由エネルギー原理 (Sensory-Motor Contingency, Predictive Coding and ...
 
【論文調査】XAI技術の効能を ユーザ実験で評価する研究
【論文調査】XAI技術の効能を ユーザ実験で評価する研究【論文調査】XAI技術の効能を ユーザ実験で評価する研究
【論文調査】XAI技術の効能を ユーザ実験で評価する研究
 
パターン認識第9章 学習ベクトル量子化
パターン認識第9章 学習ベクトル量子化パターン認識第9章 学習ベクトル量子化
パターン認識第9章 学習ベクトル量子化
 
研究発表のためのプレゼンテーション技術
研究発表のためのプレゼンテーション技術研究発表のためのプレゼンテーション技術
研究発表のためのプレゼンテーション技術
 
文脈自由文法の話
文脈自由文法の話文脈自由文法の話
文脈自由文法の話
 
音声の声質を変換する技術とその応用
音声の声質を変換する技術とその応用音声の声質を変換する技術とその応用
音声の声質を変換する技術とその応用
 
Rと同位体分析 (Kashiwa.R#8)
Rと同位体分析 (Kashiwa.R#8)Rと同位体分析 (Kashiwa.R#8)
Rと同位体分析 (Kashiwa.R#8)
 
CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1
CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1
CMA-ESサンプラーによるハイパーパラメータ最適化 at Optuna Meetup #1
 
Neural text-to-speech and voice conversion
Neural text-to-speech and voice conversionNeural text-to-speech and voice conversion
Neural text-to-speech and voice conversion
 
Pythonによる機械学習実験の管理
Pythonによる機械学習実験の管理Pythonによる機械学習実験の管理
Pythonによる機械学習実験の管理
 
いともたやすく行われるえげつない研究行為
いともたやすく行われるえげつない研究行為いともたやすく行われるえげつない研究行為
いともたやすく行われるえげつない研究行為
 

Similaire à Summation Operator

ISI MSQE Entrance Question Paper (2006)
ISI MSQE Entrance Question Paper (2006)ISI MSQE Entrance Question Paper (2006)
ISI MSQE Entrance Question Paper (2006)CrackDSE
 
Lesson 2: A Catalog of Essential Functions
Lesson 2: A Catalog of Essential FunctionsLesson 2: A Catalog of Essential Functions
Lesson 2: A Catalog of Essential FunctionsMatthew Leingang
 
STA003_WK2_L.pdf
STA003_WK2_L.pdfSTA003_WK2_L.pdf
STA003_WK2_L.pdfMAmir23
 
STA003_WK2_L.pptx
STA003_WK2_L.pptxSTA003_WK2_L.pptx
STA003_WK2_L.pptxMAmir23
 
Application of matrix algebra to multivariate data using standardize scores
Application of matrix algebra to multivariate data using standardize scoresApplication of matrix algebra to multivariate data using standardize scores
Application of matrix algebra to multivariate data using standardize scoresAlexander Decker
 
11.application of matrix algebra to multivariate data using standardize scores
11.application of matrix algebra to multivariate data using standardize scores11.application of matrix algebra to multivariate data using standardize scores
11.application of matrix algebra to multivariate data using standardize scoresAlexander Decker
 
Lesson03 The Concept Of Limit 027 Slides
Lesson03   The Concept Of Limit 027 SlidesLesson03   The Concept Of Limit 027 Slides
Lesson03 The Concept Of Limit 027 SlidesMatthew Leingang
 
1.Evaluate the function at the indicated value of x.  Round your.docx
1.Evaluate the function at the indicated value of x.  Round your.docx1.Evaluate the function at the indicated value of x.  Round your.docx
1.Evaluate the function at the indicated value of x.  Round your.docxpaynetawnya
 
Lecture2-LinearRegression.ppt
Lecture2-LinearRegression.pptLecture2-LinearRegression.ppt
Lecture2-LinearRegression.pptssuser36911e
 
4.1 exponential functions 2
4.1 exponential functions 24.1 exponential functions 2
4.1 exponential functions 2kvillave
 
ISI MSQE Entrance Question Paper (2009)
ISI MSQE Entrance Question Paper (2009)ISI MSQE Entrance Question Paper (2009)
ISI MSQE Entrance Question Paper (2009)CrackDSE
 
exponential functions (copied)
exponential functions (copied)exponential functions (copied)
exponential functions (copied)hossameldeen ahmed
 
integration in maths pdf mathematics integration
integration in maths pdf mathematics integrationintegration in maths pdf mathematics integration
integration in maths pdf mathematics integrationDr. Karrar Alwash
 
ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)CrackDSE
 
Dynamic1
Dynamic1Dynamic1
Dynamic1MyAlome
 
G10_Daily Lesson Log_Second QUARTER.docx
G10_Daily Lesson Log_Second QUARTER.docxG10_Daily Lesson Log_Second QUARTER.docx
G10_Daily Lesson Log_Second QUARTER.docxSinamarLaroyaRefuerz
 

Similaire à Summation Operator (20)

ISI MSQE Entrance Question Paper (2006)
ISI MSQE Entrance Question Paper (2006)ISI MSQE Entrance Question Paper (2006)
ISI MSQE Entrance Question Paper (2006)
 
Lesson 2: A Catalog of Essential Functions
Lesson 2: A Catalog of Essential FunctionsLesson 2: A Catalog of Essential Functions
Lesson 2: A Catalog of Essential Functions
 
STA003_WK2_L.pdf
STA003_WK2_L.pdfSTA003_WK2_L.pdf
STA003_WK2_L.pdf
 
STA003_WK2_L.pptx
STA003_WK2_L.pptxSTA003_WK2_L.pptx
STA003_WK2_L.pptx
 
Application of matrix algebra to multivariate data using standardize scores
Application of matrix algebra to multivariate data using standardize scoresApplication of matrix algebra to multivariate data using standardize scores
Application of matrix algebra to multivariate data using standardize scores
 
11.application of matrix algebra to multivariate data using standardize scores
11.application of matrix algebra to multivariate data using standardize scores11.application of matrix algebra to multivariate data using standardize scores
11.application of matrix algebra to multivariate data using standardize scores
 
Lesson03 The Concept Of Limit 027 Slides
Lesson03   The Concept Of Limit 027 SlidesLesson03   The Concept Of Limit 027 Slides
Lesson03 The Concept Of Limit 027 Slides
 
1.Evaluate the function at the indicated value of x.  Round your.docx
1.Evaluate the function at the indicated value of x.  Round your.docx1.Evaluate the function at the indicated value of x.  Round your.docx
1.Evaluate the function at the indicated value of x.  Round your.docx
 
Lecture2-LinearRegression.ppt
Lecture2-LinearRegression.pptLecture2-LinearRegression.ppt
Lecture2-LinearRegression.ppt
 
Chapter5.pdf.pdf
Chapter5.pdf.pdfChapter5.pdf.pdf
Chapter5.pdf.pdf
 
Econ ch 6
Econ ch 6Econ ch 6
Econ ch 6
 
4.1 exponential functions 2
4.1 exponential functions 24.1 exponential functions 2
4.1 exponential functions 2
 
ISI MSQE Entrance Question Paper (2009)
ISI MSQE Entrance Question Paper (2009)ISI MSQE Entrance Question Paper (2009)
ISI MSQE Entrance Question Paper (2009)
 
exponential functions (copied)
exponential functions (copied)exponential functions (copied)
exponential functions (copied)
 
Matlab
MatlabMatlab
Matlab
 
Unit 2.6
Unit 2.6Unit 2.6
Unit 2.6
 
integration in maths pdf mathematics integration
integration in maths pdf mathematics integrationintegration in maths pdf mathematics integration
integration in maths pdf mathematics integration
 
ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)
 
Dynamic1
Dynamic1Dynamic1
Dynamic1
 
G10_Daily Lesson Log_Second QUARTER.docx
G10_Daily Lesson Log_Second QUARTER.docxG10_Daily Lesson Log_Second QUARTER.docx
G10_Daily Lesson Log_Second QUARTER.docx
 

Plus de Julio Huato

Uncertainty, Risk, and Risk Management
Uncertainty, Risk, and Risk ManagementUncertainty, Risk, and Risk Management
Uncertainty, Risk, and Risk ManagementJulio Huato
 
Probability theory 2
Probability theory 2Probability theory 2
Probability theory 2Julio Huato
 
Hecksher-Ohlin model
Hecksher-Ohlin modelHecksher-Ohlin model
Hecksher-Ohlin modelJulio Huato
 
Int econ bases_trade
Int econ bases_tradeInt econ bases_trade
Int econ bases_tradeJulio Huato
 
A two-good economy
A two-good economyA two-good economy
A two-good economyJulio Huato
 
Applied Statistics - Parametric Distributions
Applied Statistics - Parametric DistributionsApplied Statistics - Parametric Distributions
Applied Statistics - Parametric DistributionsJulio Huato
 
Two-good output choice
Two-good output choiceTwo-good output choice
Two-good output choiceJulio Huato
 
Statistics - Probability theory 1
Statistics - Probability theory 1Statistics - Probability theory 1
Statistics - Probability theory 1Julio Huato
 
Intecon micro review 1
Intecon micro review 1Intecon micro review 1
Intecon micro review 1Julio Huato
 
Applied Statistics - Introduction
Applied Statistics - IntroductionApplied Statistics - Introduction
Applied Statistics - IntroductionJulio Huato
 
Inputs output costs
Inputs output costsInputs output costs
Inputs output costsJulio Huato
 
Slides money banking risk reward capm
Slides money banking risk reward capmSlides money banking risk reward capm
Slides money banking risk reward capmJulio Huato
 
Slides money banking time value
Slides money banking time valueSlides money banking time value
Slides money banking time valueJulio Huato
 

Plus de Julio Huato (20)

Uncertainty, Risk, and Risk Management
Uncertainty, Risk, and Risk ManagementUncertainty, Risk, and Risk Management
Uncertainty, Risk, and Risk Management
 
Probability theory 2
Probability theory 2Probability theory 2
Probability theory 2
 
Int Econ BoP
Int Econ BoPInt Econ BoP
Int Econ BoP
 
Hecksher-Ohlin model
Hecksher-Ohlin modelHecksher-Ohlin model
Hecksher-Ohlin model
 
Ricardian model
Ricardian modelRicardian model
Ricardian model
 
Int econ bases_trade
Int econ bases_tradeInt econ bases_trade
Int econ bases_trade
 
Fin sys
Fin sysFin sys
Fin sys
 
A two-good economy
A two-good economyA two-good economy
A two-good economy
 
Applied Statistics - Parametric Distributions
Applied Statistics - Parametric DistributionsApplied Statistics - Parametric Distributions
Applied Statistics - Parametric Distributions
 
Two-good output choice
Two-good output choiceTwo-good output choice
Two-good output choice
 
Statistics - Probability theory 1
Statistics - Probability theory 1Statistics - Probability theory 1
Statistics - Probability theory 1
 
Intecon micro review 1
Intecon micro review 1Intecon micro review 1
Intecon micro review 1
 
Applied Statistics - Introduction
Applied Statistics - IntroductionApplied Statistics - Introduction
Applied Statistics - Introduction
 
Inputs output costs
Inputs output costsInputs output costs
Inputs output costs
 
Risk
RiskRisk
Risk
 
Elasticity
ElasticityElasticity
Elasticity
 
Slides money banking risk reward capm
Slides money banking risk reward capmSlides money banking risk reward capm
Slides money banking risk reward capm
 
Slides money banking time value
Slides money banking time valueSlides money banking time value
Slides money banking time value
 
Market model
Market modelMarket model
Market model
 
Macro review
Macro reviewMacro review
Macro review
 

Dernier

Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 

Dernier (20)

Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 

Summation Operator

  • 1. Outline Operators Summation Double summation Applied Statistics for Economics Summation Operator SFC - juliohuato@gmail.com Spring 2012 SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 2. Outline Operators Summation Double summation Operators Summation Double summation SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 3. Outline Operators Summation Double summation On math as a language Math is, among other things, a language. We use language to think ideas and share them with others. In principle, the same ideas we express with math symbols we can express with words (which are also symbols). Math symbols are just abbreviations for words. However, when we abbreviate and express our ideas in math language, we economize resources. It is easier, for example, to make the shared or communicable meaning of words clearer and more precise when we use math symbols. SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 4. Outline Operators Summation Double summation Operators Operators are mathematical symbols that compress or abbreviate further our math language. That is why they can be extremely powerful tools in econometrics. These are some familiar examples of operators: Addition: + Subtraction: − Multiplication: × Division: ÷ In the context of a statement in math language, these operators tell us to execute specific operations: (a + b) add b to a; (a − b) subtract b from a; (a × b) multiply b times the number a; (a ÷ b) divide a by b (or b into a). SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 5. Outline Operators Summation Double summation Summation Operator ( ) The summation operator is heavily used in econometrics. We now let a, b, k, and n be constant numbers, and x, y , and i be variables. The following are some properties of the summation operator. SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 6. Outline Operators Summation Double summation Summation ( xi ) Suppose we have a list of numbers (the ages of 6 students): 20, 19, 22, 19, 21, 18. Let x be the age of a student and use the natural numbers (1, 2, 3, . . .) to index these ages. Thus, xi means the age of student i, where i = 1, 2, . . . , 6). Then: 6 x1 + x2 + x3 + x4 + x5 + x6 = x1 + x2 + . . . + x6 = xi i=1 The last expression is the most compact. It reads: “The sum of xi , where i goes from 1 to 6.” The summation operator tells us to add up the values of the variable x from the first to the sixth value: 6 xi = 20 + 19 + 22 + 19 + 21 + 18 = 119. i=1 SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 7. Outline Operators Summation Double summation Summation ( xi ) Note the following: n m n xi = xi + xi i=1 i=1 i=m+1 Example: 6 3 6 xi = xi + xi = (20+19+22)+(19+21+18) = 61+58 = 119. i=1 i=1 i=4 We can always split the sum into various sub-sums. SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 8. Outline Operators Summation Double summation Summing n times the constant number (k) This property also holds for the summation operator: n k = nk i=1 Example: 4 3 = 3 + 3 + 3 + 3 = 4 × 3 = 12. i=1 SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 9. Outline Operators Summation Double summation Summing n times the product of a constant k and a variable x n n kxi = k xi i=1 i=1 Example: 3 3 5xi = 5x1 + 5x2 + 5x3 = 5(x1 + x2 + x3 ) = 5 xi . i=1 i=1 SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 10. Outline Operators Summation Double summation Summing the sum of two variables (x and y ) n n n (xi + yi ) = xi + yi i=1 i=1 i=1 Example: 2 (xi + yi ) = (x1 + y1 ) + (x2 + y2 ) = x1 + y1 + x2 + y2 i=1 2 2 = x1 + x2 + y1 + y2 = (x1 + x2 ) + (y1 + y2 ) = xi + yi . i=1 i=1 SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 11. Outline Operators Summation Double summation Summing the linear rule of a variable (x) The linear rule of a variable x is: a + bx. E.g.: 4 + 5x. If the n values of the variables are indexed (i = 1, 2, . . . , n), then we can express the sum of this linear rule of x over its n values as follows: n n (a + bxi ) = na + b xi i=1 i=1 Example: 3 3 3 3 3 (4 + 5xi ) = 4+ 5xi = (3 × 4) + 5 xi = 12 + 5 xi . i=1 i=1 i=1 i=1 i=1 SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 12. Outline Operators Summation Double summation Double summation The double summation operator is used to sum up twice for the same variable: n m n xij = (xi1 + xi2 + . . . + xim ) i=1 j=1 i=1 = (x11 +x21 +. . .+xn1 )+(x12 +x22 +. . .+xn2 )+. . .+(x1m +x2m +. . .+xnm ) SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 13. Outline Operators Summation Double summation Double summation A property of the double summation operator is that the summations are interchangeable: n m m n xij = xij . i=1 j=1 i=1 j=1 SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator
  • 14. Outline Operators Summation Double summation The product operator The product operator ( ) is defined as: n xi = x1 · x2 · · · xn . i=1 Example: Let x be a list of numbers: 20, 19, 22. Then, 3 xi = 20 × 19 × 22 = 8, 360. i=1 n Note that i=1 k = k n . The n-product of a constant is the constant raised to the n-th power. SFC - juliohuato@gmail.com Applied Statistics for Economics Summation Operator