NSolve 명령

GeoGebra Manual
Mathcare (토론 | 기여)님의 2020년 6월 23일 (화) 21:54 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
이동: 둘러보기, 검색
Accessories dictionary.png
이 페이지는 공식 매뉴얼에서 출력과 pdf를 위한 부분입니다. 일반 사용자들은 이 페이지를 편집할 수 없습니다. 만일 이 페이지에서 오류를 발견하였으면, 연락하여 주시기 바랍니다.사용자에 의해 편집 가능한 버전으로 이동

이 명령은 오직 CAS 창 에서만 작동합니다..

CAS Syntax

This command is only available in the Menu view cas.svg CAS View.

NSolve( <Equation> )
Attempts (numerically) to find a solution for the equation for the main variable. For non-polynomials you should always specify a starting value (see below).
예:
NSolve(x^6 - 2x + 1 = 0) yields {x = 0.51, x = 1}.
NSolve( <Equation>, <Variable> )
Attempts (numerically) to find a solution of the equation for the given unknown variable. For non-polynomials you should always specify a starting value (see below).
예:
NSolve(a^4 + 34a^3 = 34, a) yields {a = -34, a = 0.99}.
NSolve( <Equation>, <Variable = starting value> )
Finds numerically the list of solutions to the given equation for the given unknown variable with its starting value.
예:
  • NSolve(cos(x) = x, x = 0) yields {x = 0.74}
  • NSolve(a^4 + 34a^3 = 34, a = 3) yields {a = 0.99}.
NSolve( <List of Equations>, <List of Variables> )
Attempts (numerically) to find a solution of the set of equations for the given set of unknown variables.
예:
NSolve({pi / x = cos(x - 2y), 2 y - pi = sin(x)}, {x = 3, y = 1.5}) yields {x = 3.14, y = 1.57}.
노트:
  • If you don't give a starting point like a=3 or {x = 3, y = 1.5} the numerical algorithm may find it hard to find a solution (and giving a starting point doesn't guarantee that a solution will be found)
  • The number of decimals depends on the choosen in global rounding.
  • NSolve won't work for functions that are asymptotic to the x-axis or other extreme examples. They can often be reformulated though.
  • NSolve will work only if the function is continuous!
  • See also Solve Command and NSolutions Command.
© 2024 International GeoGebra Institute