[Math] Sequence (수열) and Series (급수)

2023. 7. 21. 10:57·.../Math
728x90
728x90

Sequence

  • 수열, 열 이라고 불림.
  • numbers나 objects 들이 순서를 가지고(ordered) 나열된 것을 가리킴.
  • order(순서)가 의미를 가지며, (order가 다르기 때문에 )중복이 허용이 된다.

대표적인 예로 arithmetic sequence(등차수열), geometric sequence(등비수열), Fibonacci sequence 등이 있음.

 

중복이 허용된다는 점과 순서가 의미를 가진다는 점이 set과 가장 큰 차이점들임.

 

sequence에서는 1,2,3과 2,1,3, 3,1,2 모두 다른 sequence임(구성하고있는 number는 같지만 순서가 다름.)
이들을 set이라고 본다면 같은 set이 됨.

 

Python의 list, str, tuple등이 sequence를 추상화한 class이다. 순서가 의미를 가지므로 index로 사용됨.

https://ds31x.tistory.com/241

 

[Python] collections.abc

2023.10.06 - [Pages] - [Python] Collections1. collections.abc 와 Python의 DataStructure.Python의 Data structure는 실제적으로 collections.abc 라는 abstract base class (abc) mechanism를 통한 hierarchy로 구성된다: type은 module임.일반

ds31x.tistory.com


Series

급수 라고 불리며, Sequence의 모든 항들을 더한 것을 가리킴.

일반적으로 infinite series와 finite series로 나뉨.

  • $1+2+3+4+5=15$ : finite series의 예.
  • $\sum^{\infty}_{n=0} \frac{1}{2}^n = 2$ : 수렴하는 infinte series.
  • Taylor Series, Fourier Series가 대표적인 예임.

Sequence와 혼재되어 사용되며, 계산을 중시하면서 공부할수록 세월이 지나면 sequence와 series의 구분을 힘들어한다.
(사실 수열과 급수라고 하면 대충 느낌만 오고 정의를 잘 말 못하는 이들이 많다. 계산은 하면서도...)


같이보면 좋은 자료들

2022.06.21 - [.../Signals and Systems] - [Math] Geometric Series (등비급수 or 기하급수)

 

[Math] Geometric Series (등비급수 or 기하급수)

Geometric Series의 Recurrence Formula (점화식) $a_n=ar^{n-1}$ 인 경우, 첫번째 term이 $a$이고 common ratio(공비)가 $r$임. 수식 : Series는 sequence의 합 Geometric Series $S_n$은 $a_1$부터 $a_n$까지의 합으로 다음과 같음. $$

dsaint31.tistory.com

2024.02.25 - [.../Math] - [Math] Class: set and proper class (클래스와 집합)

 

[Math] Class: set and proper class (클래스와 집합)

Class, Proper Class, and SetClass집합론 (Zermelo-Fraenkel set theory)에서Class는 구별가능한 수학적인 객체 (distinctive object)의 collection을 의미함.(Set은 collection of distinctive objects라고 말할 수 있으나, 여기에 well-

dsaint31.tistory.com

2025.04.26 - [.../Signals and Systems] - [SS] Fourier Series (푸리에 급수)

 

[SS] Fourier Series (푸리에 급수)

Fourier SeriesFourier Series는periodic signal (주기함수로 표시됨)을해당 signal의 fundamental frequency(기본주파수, $\Omega_0=\frac{2\pi}{T}$)의 정수배 frequency를 가진 harmonics를 basis로 삼아이들을 각각의 amplitude와 ph

dsaint31.tistory.com


 

'... > Math' 카테고리의 다른 글

[Math] Rotation Vector (= Axis-Angle, Rodrigues Angle)  (0) 2023.08.05
[ML] Cosine Similarity  (0) 2023.07.23
[Math] Stationary point (or Critical point)  (0) 2023.07.10
[Math] Second Order Condition : Convexity  (0) 2023.07.10
[Math] First Order Condition : Convexity  (0) 2023.07.10
'.../Math' 카테고리의 다른 글
  • [Math] Rotation Vector (= Axis-Angle, Rodrigues Angle)
  • [ML] Cosine Similarity
  • [Math] Stationary point (or Critical point)
  • [Math] Second Order Condition : Convexity
dsaint31x
dsaint31x
    반응형
    250x250
  • dsaint31x
    Dsaint31's blog
    dsaint31x
  • 전체
    오늘
    어제
    • 분류 전체보기 (739)
      • Private Life (13)
      • Programming (56)
        • DIP (104)
        • ML (26)
      • Computer (119)
        • CE (53)
        • ETC (33)
        • CUDA (3)
        • Blog, Markdown, Latex (4)
        • Linux (9)
      • ... (350)
        • Signals and Systems (103)
        • Math (171)
        • Linear Algebra (33)
        • Physics (42)
        • 인성세미나 (1)
      • 정리필요. (54)
        • 의료기기의 이해 (6)
        • PET, MRI and so on. (1)
        • PET Study 2009 (1)
        • 방사선 장해방호 (4)
        • 방사선 생물학 (3)
        • 방사선 계측 (9)
        • 기타 방사능관련 (3)
        • 고시 (9)
        • 정리 (18)
      • RI (0)
      • 원자력,방사능 관련법 (2)
  • 블로그 메뉴

    • Math
    • Programming
    • SS
    • DIP
  • 링크

    • Convex Optimization For All
  • 공지사항

    • Test
    • PET Study 2009
    • 기타 방사능관련.
  • 인기 글

  • 태그

    signal_and_system
    Programming
    Convolution
    numpy
    fourier transform
    인허가제도
    opencv
    Term
    Vector
    SIGNAL
    math
    signals_and_systems
    random
    Python
    검사
    linear algebra
    Optimization
    function
    Probability
    SS
  • 최근 댓글

  • 최근 글

  • hELLO· Designed By정상우.v4.10.3
dsaint31x
[Math] Sequence (수열) and Series (급수)
상단으로

티스토리툴바