- HP HP 50g
[HP50g] 사용자 설명서 User Manual (한글판 추가)
https://support.hp.com/kr-ko/product/hp-50g-graphing-calculator/3235173/manuals
| HP 48gII and 50g Graphing Calculator Advanced User's Reference Manual (V2) | 4.22MB |
| HP 50g_user's manual_English_HDPSG49AEM8.pdf | 5.42MB |
| HP 50g_users guide_English_E_DCVL5300788.pdf | 9.55MB |
사용법
더 많은 솔루션을 보려면 주제를 선택하세요
선택된 주제에 대한 일치 문건
- Algebraic and RPN Operating Modes
- Amortization Schedules
- Attaching Units to Numbers
- Average Sales Prices
- Base Conversions and Arithmetic
- Bond Price
- Bond Yield
- Calculating Single Variable Standard Deviation using the Pre-programmed Features
- Calculations Involving Plots
- Calculator Display Questions
- Calculator Modes and Customization
- Changing the Angle Measure Mode
- Complex Numbers
- Confidence Intervals
- Confidence Intervals - Real Estate
- Converting to Base Units
- Cost Estimation using Linear Regression
- Curve Fitting
- Date calculations
- Finding Limits
- Getting to the Flags
- House Loan Amortization Schedules
- House Payment Calculations
- House Payment Qualification
- Hyperbolic Functions
- Hypothesis Tests
- Hypothesis tests - Real Estate
- Introduction to the Training Aids
- Lease Payments
- Loan Down Payments
- Negative Result when Squaring a Negative Number in Algebraic Mode
- Numeric Differentiation
- Numeric Integration
- Operations on Binary Numbers
- Operations with Units
- Probability - Rearranging Items
- Probability Distributions
- Property Appreciation
- Remaining Loan Balance
- Replacing the Decimal Point with Comma
- Resetting the Calculator
- Return on Investment
- Selecting the Clock Display
- Selecting the Display Font
- Setting RPN or Algebraic Mode
- Setting Time and Date
- Setting an Alarm
- Sinking Fund
- Solving Differential Equations
- Solving Linear Systems of Equations using Matrices
- Solving for Roots of Polynomials and Quadratics
- Solving for Zeroes of a Function
- Symbolic Differentiation
- Symbolic Integration of Polynomials
- Symbolic Integration of Trigonometric Functions
- The Basics of Plotting Functions
- The Basics of Plotting Functions
- The UNITS Menu
- The User keyboard
- Time Value of Money (TVM) Calculation
- Trend Lines
- Turn off the Beep
- Unit Conversions
- Using Taylor Series
- Using the EquationWriter
- Using the EquationWriter - Part 2
- Using the Numeric Solver to Solve a Formula
- Working with Fast 3D Plots
- Working with Fractions
- Working with Matrices
- Working with Parametric Plots
- Working with Polar Plots
- Working with Units
세상의모든계산기 님의 최근 댓글
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