- TI nspire
[Ti-nspire] [업데이트] What's New in TI-Nspire™ CX Version 4.0?
What's New in TI-Nspire™ CX Version 4.0?
TI-Nspire™ CX Computer Software
Working with Documents - Zoom to Fit
- Scale the document page to fit the available window size.
Working with Documents - Set default page size
- Set the default page size as either Computer or Handheld for new documents.
Graphs and Geometry - MathDraw
- MathDraw, lets you use touchscreen or mouse gestures to create points, lines, triangles, and other shapes. For example, if you draw an approximately triangular shape, the tool interprets it as a triangle.
Lua Script Editor - Zoom Text
- Adjust the size of the text in your script and in any of the tool panels.
TI-Nspire™ CX Handhelds and Computer Software
Working with Documents - Angle Mode Indicator
- An indicator now shows the angle mode (Degrees, Radians, or Gradians) in effect for the current application. On handhelds, the indicator appears at top of the document screen. In desktop software, the indicator appears in the document status bar.
Graphs - Exact Window Settings
- Use expressions such as 7/3 or 2•π for exact input of custom window settings. The values appear in exact form on the axes and in the Window Settings dialog the next time you display it.
- On TI-Nspire™ CX technology, fractional input is preserved as-is. Other exact inputs, such as radicals, are replaced with the evaluated results.
- On TI-Nspire™ CX CAS technology, fractional and other exact inputs are preserved.
Geometry - Force Triangle Angles to Integers
- Restrict the angles of a triangle to integer values as you create or edit the triangle. This feature restricts the angle sum in a triangle to 180 degrees.
3D Graphing - Orthographic View
- You can customize the 3D environment to show 3D graphs in either Orthographic Projection or Perspective View.
Graphs and Geometry - Automatically Label Points
- Automatically apply labels (A、B、..., Z、A1、B1, and so on) to points, lines, and vertices of geometric shapes as you draw them.
Graphs and Geometry - Directed Angle Measurements
- A measurement tool that lets you create directed angle measurements. You can set clockwise or counterclockwise orientation.
Graphs and Geometry - Bounded Area Selection
- Include the x-axis as a boundary when defining a bounded area.
Graphs, Geometry, and 3D Graphing - Views Preserved
- When you switch among the Graphs, Geometry, and 3D Graphing views, the most recently used window/view settings for the selected view are applied. You can also undo and redo view changes.
Data & Statistics - Display Digits and Diagnostics
- Display Digits setting lets you select the display format for numeric labels in the current document.
- New Diagnostics setting lets you display the value of the r² or R² statistic under certain regression equations.
주의
일단 OS를 업그레이드 하고 나면, 원래대로 다운그레이드 하는 것이 어려울 수 있습니다. 기존 OS에서만 작동하는 조금 덩치 큰 프로그램(예: Ndless)이 있는데, 그런 프로그램을 사용하신다면, OS 업그레이드를 진행하는 것이 유리할지 미리 알아보시는게 좋습니다.
세상의모든계산기 님의 최근 댓글
2번 사진 3개 사진 공통적으로 구석(corner) 에 증상이 있다는 특징이 있네요. 영상 찾아보니 이 가능성이 가장 높은 듯 합니다. https://www.youtube.com/watch?v=zxRBohepzwc ㄴ Liquid Crystal Leakage (액정 누설). ㄴ 손으로 밀어내니 주변으로 밀려나네요. 그래서 점으로 보이기도 하구요. 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