- TI nspire
[TI-nspire CAS] function - desolve() : 미분방정식 함수
1. 개요
미분방정식의 해를 구하는 함수입니다.
※ TI-89T의 desolve() 함수와 비슷한 기능을 합니다. ( 똑같지는 않은 듯)
2. 사용방법
2-1. 일반해
deSolve(1stOr2ndOrderODE, Var, depVar) ⇒ a general solution
Returns an equation that explicitly or implicitly specifies a general solution to the 1st- or 2nd-order ordinary differential equation (ODE). In the ODE:
- Use a prime symbol (press 【?!▶】) to denote the 1st derivative of the dependent variable with respect to the independent variable.
- Use two prime symbols to denote the corresponding second derivative.
The prime symbol is used for derivatives within deSolve() only. In other cases, use d().
The general solution of a 1st-order equation contains an arbitrary constant of the form ck, where k is an integer suffix from 1 through 255. The solution of a 2nd-order equation contains two such constants. Apply solve() to an implicit solution if you want to try to convert it to one or more equivalent explicit solutions.
When comparing your results with textbook or manual solutions, be aware that different methods introduce arbitrary constants at different points in the calculation, which may produce different general solutions.


2-2. 특수해
deSolve(1stOrderODE and initCond, Var, depVar) ⇒ a particular solution
Returns a particular solution that satisfies 1stOrderODE and initCond. This is usually easier than determining a general solution, substituting initial values, solving for the arbitrary constant, and then substituting that value into the general solution.
initCond is an equation of the form:
depVar (initialIndependentValue) = initialDependentValue
The initialIndependentValue and initialDependentValue can be variables such as x0 and y0 that have no stored values. Implicit differentiation can help verify implicit solutions.

2-3. 특수해
deSolve(2ndOrderODE and initCond1 and initCond2, Var, depVar) ⇒ particular solution
Returns a particular solution that satisfies 2nd Order ODE and has a specified value of the dependent variable and its first derivative at one point.
For initCond1, use the form:
depVar (initialIndependentValue) = initialDependentValue
For initCond2, use the form:
depVar (initialIndependentValue) = initial1stDerivativeValue

2-4. 특수해
deSolve(2ndOrderODE and bndCond1 and bndCond2, Var, depVar) ⇒ a particular solution
Returns a particular solution that satisfies 2ndOrderODE and has specified values at two different points.

3. 주의사항
※ 내용 출처 : TI-Nspire™_ReferenceGuide_EN_V3.9.pdf
댓글15
-
세상의모든계산기
Q : 어떤 박테리아의 개체수가 증가하는 속도는 현재의 개체수에 비례하여 증가한다고 한다. 10일 후에 박테리아 개체수가 현재의 2배가 된다면, (현재로부터) 25일 후에는 현재의 몇배가 되나?

-
세상의모든계산기
Q1 : 박테리아 배양기에 200개의 개체가 있다고 하자. 60분 후에 650개의 개체가 관찰되었다. 지수적으로 증가한다고 하고 t분 후의 개체 수와 초기 개체 수로부터 개체 수가 2배가 될 때까지 걸린 시간을 구하자.
[출처] 수학-미분방정식의 모델 1|작성자 미분 연산자
ㄴ 원문은 "관찰되었다"가 아니고 "생성되었다"이지만, 혼동을 피하기 위해 변경하였습니다.
Q2 : 예를 들면 14C(탄소-14)의 반감기를 대략 5730년으로 계산하는데, 이 탄소를 1 gram 갖고 있다면 5730년 후에는 대략 0.5 gram 이 남아 있게 된다. 지금 14C를 100 gram 갖고 있다면 250년 후에는 얼마나 남을까?

ㄴ 방사성 동위원소를 이용한 실험 결과를 계산하는 과정을 설명하고 있습니다.위 반감기 남은 물질 방정식은 아래와 같이 바꿔 쓸 수도 있습니다. (지수-로그 공식)
-
세상의모든계산기
Q3 : 선사시대의 벽화 연대를 측정하기 위하여 타버린 나무 조각이나 숯을 사용하였다. 타버린 나무 조각에서 C-14의 85.5%가 감소하였다면 이 나무의 연대를 결정하라?
* 친절하게 몇%가 감소하였다고 나오지 않고, 붕괴율이 자료로 나온다면 그 아래 식으로 풀이
(시료의 붕괴율 R=100 min-1, 자연상태 붕괴율 R0=144.96 min-1) -
세상의모든계산기
문제
어떤 물질이 10시간에 6%씩 감소한다. 이 물질의 반감기를 찾아라.
Solution 1

Solution 2

둘을 같은 풀이라고 할 수 있나? OK

그래프 페이지에서 직접 확인해 보면 거의 일치하지만, 최대한으로 확대(zoom)해 보면 미~~세하게 차이가 남. (계산상 유효 자릿수 14 digts 한계 때문인 듯)

- 1
-
1
세상의모든계산기
잘 모르겠습니다. 그냥 우변을 0으로 놓으면 되는 것입니까?

- 2
- 1
- 1
세상의모든계산기 님의 최근 댓글
2번 사진 3개 사진 공통적으로 구석(corner) 에 증상이 있다는 특징이 있네요. 2025 10.29 500! 의 십진수 근사값 확인 500! = 1.22013682599111006870123878542304692625357434280319284219241358838 × 10^(1134) (참값, 울프람 알파) 2025 10.29 관련 라이브러리 https://allcalc.org/56263 sgn(x) 내장된 부호 함수(signum function)와 달리, 이 함수의 sgn(0)은 0을 반환합니다. 2025 10.29 라이브러리로 사용할 수 있습니다. (제작자 추천) 1. mylib 폴더에 넣기 2. Actions ➡️ library ➡️ refresh libraries 실행 하기 2025 10.29 ChatGPT-5 기호(÷, /, :) 자체는 의미적으로 같은 “나눗셈”을 뜻하지만, 문맥(사람이 쓰는 수학 vs 컴퓨터/프로그래밍)에 따라 해석 우선순위가 달라질 수 있습니다. 🔹 1️⃣ 전통 수학 표기 — ÷, /, : 수학 교과서, 논문, 일반 문서 등에서는 셋 다 의미적으로 “나누기”로 간주됩니다. 즉, 48÷2(9+3), 48/2(9+3), 48:2(9+3) 은 같은 의미로 받아들여야 합니다. 모두 사람의 수학 관행적 해석이 적용되어 48 ÷ 2 × (9+3) = 288 로 처리되죠. 즉, 기호가 바뀌어도 결과는 바뀌지 않습니다. 🔹 2️⃣ 컴퓨터·프로그래밍 문맥에서 / 사용 시 컴퓨터는 “생략된 곱셈(implicit multiplication)”을 따로 구분하지 못합니다. 따라서 다음 두 식은 완전히 다르게 인식됩니다. 표현 파이썬 등에서 해석 결과 48 / 2*(9+3) ((48 / 2) * (9+3)) 288 48 / 2(9+3) ❌ 문법 오류 (생략된 곱셈 인식 불가) — 즉, 컴퓨터 언어에서는 생략된 곱셈이 허용되지 않기 때문에, /는 반드시 명시적 *와 함께 써야 합니다. 🔹 3️⃣ “:” 기호의 경우 현대 수학에서는 “비율”을 나타내는 기호로 쓰입니다. a:b = \frac{a}{b} 따라서 (27 : 3(1+2)3) 같은 표현은 모호하거나 비표준적으로 간주됩니다. 대부분의 경우 계산기로는 입력 자체가 불가능합니다. ✅ 정리 기호 의미 결과 변화 주로 쓰이는 문맥 ÷ 나누기 없음 초중등 수학, 일반 표기 / 나누기 없음 (단, 프로그래밍에서는 생략 곱 불허) 수학/컴퓨터 : 비율 (또는 나누기 의미로 혼용) 보통 계산식에서는 사용 안 함 비, 비율 표기 🔹 결론 48 ÷ 2(9+3), 48/2(9+3), 48:2(9+3) 는 “수학적 의미”로는 동일하게 81로 해석됩니다. 하지만 프로그래밍이나 수식 파서(context) 에서는 /만 유효하고, 생략된 곱은 허용되지 않으며, :는 아예 다른 의미(비율)로 인식됩니다. 2025 10.28