素因数分解計算機
数を素因数分解します。
結果はタイプすると更新されます。
この計算機の情報
factorization is a method of finding prime numbers by dividing the smallest prime that fits into a group of multiple primes. For example, 360 = 2 × 3 × 3 × 5, written 2³ × 3² × 5. The number of divisors follows from the exponents — add one to each and multiply: (3+1) × (2+1) × (1+1) = 24 divisors for 360. If a number factors into just itself, it is prime.Prime factorization is a method of finding prime numbers by dividing the smallest prime that fits into a group of multiple primes.It works by dividing the prime numbers into fractions, and by dividing the prime numbers into powers.Prime factorization is a method of finding prime numbers
よくある質問
素因数分解とは何か。
素数の積として数を書くことである。360=2×3×3×5、通常は2³×3²×5と書く。
数が素数かどうかはどうやって分かる?
素数は正確に一つの素因数を持つ。素因数分解が数そのもののみならば素数である。
数は何個の除数を持つのか。
分解の各指数に 1 を加えて乗算する。360 = 2³ × 3² × 5 で、 (3+1) × (2+1) × (1+1) = 24 の除数がある。
どの素数が最初に除算されますか?
適合する最小のもの:ツールはすべての2sを分割し、次に3s、次に5sを分割し、素数を上へと続ける。
1 は素数ですか。
1は素因子を持たず,慣習的に素数でも複素数でもないので,ツールは少なくとも2の入力を必要とする。
繰り返し素数はどのように表示される?
指数形式に分類され、2 の三乗は 2 × 2 × 2 ではなく 2³ と書かれる。
API — コードからこの計算機を使う
この計算機を自由な JSON エンドポイントとして呼び出します。鍵は必要ありません。下のフィールド値をクエリパラメータまたは JSON として送信します。 API ドキュメントを読む →
エンドポイント
GET https://calculator.free/api/v1/prime-factorization/
curl
curl "https://calculator.free/api/v1/prime-factorization/?n=360"
JavaScript fetch()
const r = await fetch(
"https://calculator.free/api/v1/prime-factorization/?" + new URLSearchParams({
"n": "360"
}));
const data = await r.json();
console.log(data.results);
結果は一般的な指導のための推定であり,財務的,医療的または税務的なアドバイスではない。