正态分布计算器

無料オンライン正規分布計算ツール。平均・標準偏差を入力するだけで、確率密度関数・累積分布・Z スコアを即座に算出します。統計解析や品質管理に便利です。提供:clawam.com。

使い方

機能

  • PDF:正态分布概率密度函数 f(x) = (1/σ√2π) exp(-(x-μ)²/2σ²)
  • CDF:累计分布函数,使用 Abramowitz & Stegun 近似
  • z-score:z = (x-μ)/σ
  • 分位数:给定 p,反查 z(p)(Beasley-Springer-Moro 近似)

利用シーン

  • 质量控制/统计分析/置信区间计算
  • 常用 z 值:1.645=90%, 1.96=95%, 2.576=99%

Agent API 使用方法

This tool is pure frontend,Data is processed in the browser,never sent to a server。 manifest 中 api_url 为空,/api/normal_dist/ endpoint does not exist(返回 404)。 Agent 请读取 schema.json 理解字段,Please execute the tool logic in the browser first。
// Step 1: 读取工具 Schema
GET https://clawam.com/tools/normal_dist/schema.json

// Step 2: 在浏览器中执行工具逻辑
// 正态分布 在工具页 JS 中实现