계수 명령

GeoGebra Manual
Mathcare (토론 | 기여)님의 2020년 6월 28일 (일) 20:24 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
이동: 둘러보기, 검색
Accessories dictionary.png
이 페이지는 공식 매뉴얼에서 출력과 pdf를 위한 부분입니다. 일반 사용자들은 이 페이지를 편집할 수 없습니다. 만일 이 페이지에서 오류를 발견하였으면, 연락하여 주시기 바랍니다.사용자에 의해 편집 가능한 버전으로 이동
Coefficients( <Polynomial> )
Yields the list of all coefficients a_k,a_{k-1},\ldots,a_1, a_0 of the polynomial a_kx^k+a_{k-1}x^{k-1}+\cdots+a_1x+a_0.
예:
Coefficients(x^3 - 3 x^2 + 3 x) yields {1, -3, 3, 0}, the list of all coefficients of x^3 - 3 x^2 + 3 x.
노트: There's a special mode (for non-polynomials) for the output of the fitting commands eg if f(x) = FitExp(l1) then Coefficients(f) will return the calculated parameters
Coefficients( <Conic> )
Returns the list of the coefficients a, b, c, d, e, f of a conic in standard form: a\cdot x^2 + b\cdot y^2 + c + d\cdot x\cdot y + e\cdot x + f\cdot y = 0
노트: For a line in implicit form l: ax + by + c = 0 it is possible to obtain the coefficients using the syntax x(l), y(l), z(l).
예: Given line: 3x + 2y - 2 = 0:
  • x(line) returns 3
  • y(line) returns 2
  • z(line) returns -2

CAS Syntax

Coefficients( <Polynomial> )
Yields the list of all coefficients of the polynomial in the main variable.
예:
Coefficients(x^3 - 3 x^2 + 3 x) yields {1, -3, 3, 0}, the list of all coefficients of x^3 - 3 x^2 + 3 x.
Coefficients( <Polynomial>, <Variable> )
Yields the list of all coefficients of the polynomial in the given variable.
예:
  • Coefficients(a^3 - 3 a^2 + 3 a, a) yields {1, -3, 3, 0}, the list of all coefficients of a^3 - 3 a^2 + 3 a
  • Coefficients(a^3 - 3 a^2 + 3 a, x) yields {a³ - 3 a² + 3 a}.
© 2024 International GeoGebra Institute