Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 10 years ago

petRUShka gravatar image

Decompose polynomial by other irreducible polynomial

Suppose I have irreducible polynomial v(x) over Q (or arbitrary field). I want to decompose any other f(x)Q[x] by powers of v. Like this f(x)=an(v(x))n++a1v(x)+a0

Is there some fast(?) way to do it in Sage except by hand writing your own function?

click to hide/show revision 2
No.2 Revision

Decompose polynomial by other irreducible polynomial

Suppose I have irreducible polynomial v(x) over Q (or arbitrary field). I want to decompose any other f(x)Q[x] by powers of v. Like this $$f(x)=a_n(v(x))^n $$f(x)=a_n(x)(v(x))^n + \dots + a_1v(x) a_1(x)v(x) + a_0$$a_0(x)$$

Is there some fast(?) way to do it in Sage except by hand writing your own function?

UPD. I forget to add that degai<degv.

click to hide/show revision 3
No.3 Revision

Decompose polynomial by other irreducible polynomial

Suppose I have irreducible polynomial v(x) over Q (or arbitrary field). I want to decompose any other f(x)Q[x] by powers of v. Like this f(x)=an(x)(v(x))n++a1(x)v(x)+a0(x)

Is there some fast(?) way to do it in Sage except by hand writing your own function?

UPD. I forget to add that $\deg a_i < \deg v$.v$. UPD2. Naive solution:

  degree = f.degree()//v.degree()                                                                                                                                          
  decomposition = [None] * (degree + 1)
  for i in range(degree+1):                                                                                                              
    decomposition[i] = f%v                                                                                                             
    f //= v                                                                                                                       
  return decomposition

But may be there is some native solution

click to hide/show revision 4
No.4 Revision

Decompose polynomial by other irreducible polynomial

Suppose I have irreducible polynomial v(x) over Q (or arbitrary field). I want to decompose any other f(x)Q[x] by powers of v. Like this f(x)=an(x)(v(x))n++a1(x)v(x)+a0(x)

Is there some fast(?) way to do it in Sage except by hand writing your own function?

UPD. I forget to add that $\deg a_i < \deg v$. v$.

UPD2. Naive solution:

  degree = f.degree()//v.degree()                                                                                                                                          
  decomposition = [None] * (degree + 1)
  for i in range(degree+1):                                                                                                              
    decomposition[i] = f%v                                                                                                             
    f //= v                                                                                                                       
  return decomposition

But may be there is some native solution