FactorSquareFreeList[poly]
给出了一个多项式的无平方因子以及它们的指数组成的列表.
FactorSquareFreeList
FactorSquareFreeList[poly]
给出了一个多项式的无平方因子以及它们的指数组成的列表.
范例
打开所有单元 关闭所有单元基本范例 (2)
范围 (8)
FactorSquareFreeList[x ^ 4 - 9x ^ 3 + 29x ^ 2 - 39x + 18]FactorSquareFreeList[x ^ 5 - x ^ 3y ^ 2 - x ^ 2y ^ 3 + y ^ 5]FactorSquareFreeList[(x ^ 3 + x ^ 2) / (x ^ 2 - 4y ^ 2) - (x + 1) / (x ^ 2 - 4y ^ 2)]FactorSquareFreeList[x ^ 4 - 2I x ^ 3 - 2x ^ 2 + 2 I x + 1]FactorSquareFreeList[E ^ (3x) - 3E ^ (2x) + 3E ^ x - 1]FactorSquareFreeList[x + 2Sqrt[x] + 1]FactorSquareFreeList[x ^ 6 + 1, Modulus -> 3]ℱ = FiniteField[17, 3];FactorSquareFreeList[ℱ[1]x ^ 4 + ℱ[246]x ^ 3 + ℱ[4875]x ^ 2 + ℱ[4608]x + ℱ[304]]rpoly[n_] := RandomInteger[{-2 ^ 10, 2 ^ 10}, {n + 1}].x ^ Range[0, n]
SeedRandom[1234];
p = rpoly[2000]; q = rpoly[2000];
r = Expand[p ^ 2 q ^ 3];(facs = FactorSquareFreeList[r]);//AbsoluteTiming{Exponent[#[[1]], x], #[[2]]}& /@ facs选项 (5)
Extension (3)
FactorSquareFreeList[x ^ 2 + 2Sqrt[2]x + 2]设置 Extension->Automatic,系数间的代数性依赖可以识别:
FactorSquareFreeList[x ^ 2 + 2Sqrt[2]x + 2, Extension -> Automatic]ℱ = FiniteField[2, 3];FactorSquareFreeList[x ^ 4 + 1, Extension -> ℱ]应用 (1)
f = x ^ 9 + 9x ^ 8 + 21x ^ 7 - 27x ^ 6 - 153x ^ 5 - 81x ^ 4 + 239x ^ 3 + 207x ^ 2 - 108x - 108;rtsf = x /. Solve[f == 0, x]g = Times@@First /@ FactorSquareFreeList[f]rtsg = x /. Solve[g == 0, x]rtsg === Union[rtsf]属性和关系 (3)
FactorSquareFreeList 给出无平方因子的列表:
f = x ^ 9 + 9x ^ 8 + 21x ^ 7 - 27x ^ 6 - 153x ^ 5 - 81x ^ 4 + 239x ^ 3 + 207x ^ 2 - 108x - 108;FactorSquareFreeList[f]Times@@Power@@@%FactorSquareFree 给出因子的乘积:
FactorSquareFree[x ^ 8 + 11x ^ 7 + 43x ^ 6 + 59x ^ 5 - 35x ^ 4 - 151x ^ 3 - 63x ^ 2 + 81x + 54]Expand 展开所有的因子:
Expand[%]FactorList 给出不可约的因子列表:
FactorList[f]只有当 Discriminant 为 0 时,一元多项式有多重因子:
Discriminant[x ^ 5 - x ^ 3 - x ^ 2 + 1, x]FactorSquareFreeList[x ^ 5 - x ^ 3 - x ^ 2 + 1]Discriminant[x ^ 5 - x ^ 3 - x ^ 2 - 1, x]FactorSquareFreeList[x ^ 5 - x ^ 3 - x ^ 2 - 1]FactorInteger 给出素数因子的列表:
FactorInteger[1234567]Times@@Power@@@%技术笔记
-
▪
- 多项式的代数运算
历史
1988年引入 (1.0) | 在以下年份被更新:2022 (13.2) ▪ 2023 (13.3)
文本
Wolfram Research (1988),FactorSquareFreeList,Wolfram 语言函数,https://reference.wolfram.com/language/ref/FactorSquareFreeList.html (更新于 2023 年).
CMS
Wolfram 语言. 1988. "FactorSquareFreeList." Wolfram 语言与系统参考资料中心. Wolfram Research. 最新版本 2023. https://reference.wolfram.com/language/ref/FactorSquareFreeList.html.
APA
Wolfram 语言. (1988). FactorSquareFreeList. Wolfram 语言与系统参考资料中心. 追溯自 https://reference.wolfram.com/language/ref/FactorSquareFreeList.html 年
BibTeX
@misc{reference.wolfram_2026_factorsquarefreelist, author="Wolfram Research", title="{FactorSquareFreeList}", year="2023", howpublished="\url{https://reference.wolfram.com/language/ref/FactorSquareFreeList.html}", note=[Accessed: 16-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_factorsquarefreelist, organization={Wolfram Research}, title={FactorSquareFreeList}, year={2023}, url={https://reference.wolfram.com/language/ref/FactorSquareFreeList.html}, note=[Accessed: 16-September-2026]}