Is it possible to find this number without brute force?

  • Thread starter Thread starter julianwitkowski
  • Start date Start date
  • Tags Tags
    Force
julianwitkowski
Messages
133
Reaction score
0
Sorry if this is the wrong thread, seems appropriate but I'm kind of just learning math. This started as a thought experiment to learn some new technique. I've been trying to compute the total number of integer polynomials under certain restrictions: such that all coefficients, x, and the constant term are all among the variables within the count.

I was told that this can only be done by brute force/enumeration, but I feel like there must be a way otherwise.

Basically all polynomials must suit the following restrictions:

± ax³ ± bx² ± cx ± d = 0

Such That...

1 ≤ a ≤ 100 ∈ ℤ [a ≠ 0 since it's a 3rd degree]
0 ≤ b ≤ 100 ∈ ℤ
0 ≤ c ≤ 100 ∈ ℤ
0 ≤ d ≤ 100 ∈ ℤ
0 ≤ x ≤ 100 ∈ ℤ

1(1)³ + 1(1)² - 1(1) - 1 = 0 ... is an example that would be counted...

2(1)³ + 2(1)² - 2(1) - 1 = 0 ... is not an example because... 2(1)³ + 2(1)² - 2(1) - 1 = 1
___________________________________

Could I create a 6D space for ax³ + bx² + cx + d = n and focus on the root for n between -100 and 100 ?
___________________________________

Do you have any way I could approach this problem?
 
Physics news on Phys.org
Are you looking for all polynomial functions that have an integer root? It might be possible to use those roots as starting point - they allow to factor the polynomial, All polynomials ##(Ax^2+Bx+C)(x-x_0)## have an integer root at x0, and figuring out how many there are that satisfy the other conditions could be faster than brute force. Avoiding double counting might be complicated.

Without loss of generality, you can assume that the first summand is positive. Negative x are not allowed? That would make the problem more symmetric.
 
mfb said:
Are you looking for all polynomial functions that have an integer root?

Not necessarily, more so the permutations where all coefficients, the x variable, and constant term are considered and all some combination between -100 and 100 such that, the combination satisfies the RS to equal 0.

I'm trying to imagine a 6D surface: ax³ + bx² + cx + d = y ... It would be like a lower dimensional, x,y,z surface exhibiting all of the possibilities for that function, but just in a higher dimensional topology. I've heard in theory it should still work the same, so I was hoping the y intercepts could be sorted because that's where all of my answers are.

I've also been considering factored form as well, but not all integer polys can be factored and they won't neccesary factor all the same way so it's much harder to consider I think.
 
julianwitkowski said:
Not necessarily, more so the permutations where all coefficients, the x variable, and constant term are considered and all some combination between -100 and 100 such that, the combination satisfies the RS to equal 0.
What about x^3-4x^2+5x-2?
This has the solutions x=1 and x=2. If that is counted twice, then the approach I described in post 2 should work well because you don't have to care about double-counting.

All polynomials with integer roots can be factored that way. The second part (the quadratic one) might not have real factors - so what?
 
  • Like
Likes julianwitkowski
mfb said:
What about x^3-4x^2+5x-2?
This has the solutions x=1 and x=2. If that is counted twice, then the approach I described in post 2 should work well because you don't have to care about double-counting.

All polynomials with integer roots can be factored that way. The second part (the quadratic one) might not have real factors - so what?

Yes, it would be counted twice. All root possibilities for any given polynomial would be a unique combination, and there is no rule saying that number can't repeat or anything either.

Thanks, I'm going to think about this and see what I come up with.
 
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
When decomposing a representation ##\rho## of a finite group ##G## into irreducible representations, we can find the number of times the representation contains a particular irrep ##\rho_0## through the character inner product $$ \langle \chi, \chi_0\rangle = \frac{1}{|G|} \sum_{g\in G} \chi(g) \chi_0(g)^*$$ where ##\chi## and ##\chi_0## are the characters of ##\rho## and ##\rho_0##, respectively. Since all group elements in the same conjugacy class have the same characters, this may be...
Back
Top