수열 명령

GeoGebra Manual
Mathcare (토론 | 기여)님의 2020년 6월 28일 (일) 22:09 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
이동: 둘러보기, 검색
Accessories dictionary.png
이 페이지는 공식 매뉴얼에서 출력과 pdf를 위한 부분입니다. 일반 사용자들은 이 페이지를 편집할 수 없습니다. 만일 이 페이지에서 오류를 발견하였으면, 연락하여 주시기 바랍니다.사용자에 의해 편집 가능한 버전으로 이동
Sequence( <Expression>, <Variable k>, <Start Value a>, <End Value b> )
Yields a list of objects created using the given expression and the index k that ranges from start value a to end value b.
예:
  • Sequence((2, k), k, 1, 5) creates a list of points whose y-coordinates range from 1 to 5: {(2, 1), (2, 2), (2, 3), (2, 4), (2, 5)}
  • Sequence(x^k, k, 1, 10) creates the list {x, x², x³, x⁴, x⁵, x⁶, x⁷, x⁸, x⁹, x¹⁰}
Sequence( <Expression>, <Variable k>, <Start Value a>, <End Value b>, <Increment> )
Yields a list of objects created using the given expression and the index k that ranges from start value a to end value b with given increment.
예:
  • Sequence((2, k), k, 1, 3, 0.5) creates a list of points whose y-coordinates range from 1 to 3 with an increment of 0.5: {(2, 1), (2, 1.5), (2, 2), (2, 2.5), (2, 3)}
  • Sequence(x^k, k, 1, 10, 2) creates the list {x, x³, x⁵, x⁷, x⁹}.
노트: Since the parameters a and b are dynamic you could use slider variables in both cases above as well.
Sequence( <End Value > )
Creates a list of integers from 1 to the given end value.
예:
  • Sequence(4) creates the list {1, 2, 3, 4}.
  • 2^Sequence(4) creates the list {2, 4, 8, 16}.
Sequence( <Start value k >, <End value n > )
Creates a list of integers from k to n (increasing or decreasing).
예:
  • Sequence(7,13) creates the list {7, 8, 9, 10, 11, 12, 13}
  • Sequence(18,14) creates the list {18, 17, 16, 15, 14}
  • Sequence(-5, 5) creates the list {-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5}.
노트: This syntax can be further simplified: instead of using e.g. the formal Sequence(7,13) it is possible to obtain the same result by typing in the input bar 7..13 .
노트: See Lists for more information on list operations.
© 2024 International GeoGebra Institute