Find the smallest positive integer

In summary: It's not at all difficult algebraically. Look at where youngstudent got to in post...In summary, the smallest positive integer that satisfies the inequality is 4.
  • #1
youngstudent16
59
1

Homework Statement


For a positive integer ##n##, let

##a_n=\frac{1}{n} \sqrt[3]{n^{3}+n^{2}-n-1}##

Find the smallest positive integer ##k \geq2## such that ##a_2a_3\cdots a_k>4##

Homework Equations



The restrictions are the only relevant thing I can think of

The Attempt at a Solution



I have just tried plugging in numbers so far

When ##n=2## I got ##\frac{3^{\frac{2}{3}}}{2}##
When ##n=3## I got ##\frac{2 \times 2^{\frac{2}{3}}}{3}##
When ##n=4## I got ##\frac{1}{4} 3^{\frac{1}{3}} \hspace{1mm} 5^{\frac{2}{3}}##

Now this is growing really slowly so this is obviously not the correct approach.
 
Physics news on Phys.org
  • #2
youngstudent16 said:

Homework Statement


For a positive integer ##n##, let

##a_n=\frac{1}{n} \sqrt[3]{n^{3}+n^{2}-n-1}##

Find the smallest positive integer ##k \geq2## such that ##a_2a_3\cdots a_k>4##

Homework Equations



The restrictions are the only relevant thing I can think of

The Attempt at a Solution



I have just tried plugging in numbers so far

When ##n=2## I got ##\frac{3^{\frac{2}{3}}}{2}##
When ##n=3## I got ##\frac{2 \times 2^{\frac{2}{3}}}{3}##
When ##n=4## I got ##\frac{1}{4} 3^{\frac{1}{3}} \hspace{1mm} 5^{\frac{2}{3}}##

Now this is growing really slowly so this is obviously not the correct approach.
I would advise you to just keep going. Sometimes, a brute force approach is the easiest way to go. For your results for n = 4, is the expression you show less than 4? Writing the result as a decimal approximation would be helpful.
 
  • Like
Likes Student100
  • #3
youngstudent16 said:

Homework Statement


For a positive integer ##n##, let

##a_n=\frac{1}{n} \sqrt[3]{n^{3}+n^{2}-n-1}##

Find the smallest positive integer ##k \geq2## such that ##a_2a_3\cdots a_k>4##

Homework Equations



The restrictions are the only relevant thing I can think of

The Attempt at a Solution



I have just tried plugging in numbers so far

When ##n=2## I got ##\frac{3^{\frac{2}{3}}}{2}##
When ##n=3## I got ##\frac{2 \times 2^{\frac{2}{3}}}{3}##
When ##n=4## I got ##\frac{1}{4} 3^{\frac{1}{3}} \hspace{1mm} 5^{\frac{2}{3}}##

Now this is growing really slowly so this is obviously not the correct approach.

Set up an inequality.
 
  • #4
Mark44 said:
I would advise you to just keep going. Sometimes, a brute force approach is the easiest way to go. For your results for n = 4, is the expression you show less than 4? Writing the result as a decimal approximation would be helpful.

Never mind, I'm an idiot. :)
 
  • #5
Student100 said:
Set up an inequality.
Ok trying to just work with the variables no numbers I'm getting this pattern

##\frac{\sqrt[3]{k-1)(k+1)^2}(k-1)}{k}##
Now I simplify and set up the ineqaulity
##\frac{\sqrt[3]{(2k^2)(k+1)^2}}{2k}>4##

Now what
 
  • #6
Mark44 said:
I would advise you to just keep going. Sometimes, a brute force approach is the easiest way to go. For your results for n = 4, is the expression you show less than 4? Writing the result as a decimal approximation would be helpful.
I tried putting them with decimal and using wolframalpha I went to 10 numbers and still it was tiny
 
  • #7
youngstudent16 said:
Ok trying to just work with the variables no numbers I'm getting this pattern

##\frac{\sqrt[3]{k-1)(k+1)^2}(k-1)}{k}##
Now I simplify and set up the ineqaulity
##\frac{\sqrt[3]{(2k^2)(k+1)^2}}{2k}>4##

Now what

I misread your question:
## a _2+a _3 + ... a _k ##
Whats the sum of your brute force method? You are summing them correct?
 
  • #8
Student100 said:
I misread your question:
## a _2+a _3 + ... a _k ##
Whats the sum of your brute force method? You are summing them correct?
Its multiplying not summing and yes I tried brute force now using wolframalpha for several numbers and its going up very slowly like 1.01 1..., 1..., 1... etc
 
  • #9
youngstudent16 said:
Its multiplying not summing and yes I tried brute force now using wolframalpha for several numbers and its going up very slowly like 1.01 1..., 1..., 1... etc

Okay, well then as long as you set up your inequality right have you tried punching it into a calculator/wolfram and seeing if a solution exists? Picking various k's and working it out?
 
  • #10
youngstudent16 said:
##\frac{\sqrt[3]{(2k^2)(k+1)^2}}{2k}>4##

Now what
You've done the hard work. Just cube both sides, multiply out and simplify.
 
  • Like
Likes youngstudent16
  • #11
As it turns out, brute force and direct calculation with paper and pencil don't work very well for this problem. You can, however, use brute force and a computer to find the answer. I put together an Excel spreadsheet that shows that when n is about 250, the product finally gets to 4.

The first two rows of my spreadsheet look like this:
Code:
 2 | 1/A1 * (A1^3 + A1^2 - A1 - 1)^(1/3) | =B1
=A1 + 1 | 1/A2 * (A2^3 + A2^2 - A2 - 1)^(1/3) | =B2 * C1

I just copied the second row (all three columns) down a bunch of rows.
 
  • #12
Mark44 said:
As it turns out, brute force and direct calculation with paper and pencil don't work very well for this problem. You can, however, use brute force and a computer to find the answer. I put together an Excel spreadsheet that shows that when n is about 250, the product finally gets to 4.

The first two rows of my spreadsheet look like this:
Code:
 2 | 1/A1 * (A1^3 + A1^2 - A1 - 1)^(1/3) | =B1
=A1 + 1 | 1/A2 * (A2^3 + A2^2 - A2 - 1)^(1/3) | =B2 * C1

I just copied the second row (all three columns) down a bunch of rows.
It's not at all difficult algebraically. Look at where youngstudent got to in post #5.
 
  • #13
youngstudent16 said:
Ok trying to just work with the variables no numbers I'm getting this pattern

##\frac{\sqrt[3]{k-1)(k+1)^2}(k-1)}{k}##
Now I simplify and set up the ineqaulity
##\frac{\sqrt[3]{(2k^2)(k+1)^2}}{2k}>4##

Now what
I'm not sure that's quite right.
Go back to the expression inside the cube root in ##a_n##. Notice that it factorises to ##(n^2-1)(n+1)=(n-1)(n+1)^2##.
Next, bring the ##n## in the denominator inside the cube root, by cubing it. That gives us
$${a_n}^3=\frac{(n-1)(n+1)^2}{n^3}$$

Hence the inequality you want to prove is:

$$4^3=64< \prod_{k=2}^n \frac{(k-1)(k+1)^2}{k^3}$$

Look carefully at the inside of the product. Notice how the power in the denominator is 3 and the numerator has the 1st power of the previous factor and the 2nd power of the next factor. Does that give you an idea about some really nice simplifying cancellation that is going to happen between adjacent factors?

Try writing out a few factors in a row like this and you'll get an idea of the cancellation, which will lead you towards a simple guessed expression for the product, in which everything cancels out except a few bits from the first and last factors. You can then use mathematical induction to prove that that expression is the correct one for each product.

Once you have that expression, solving the inequality is easy. It should be an inequality involving only polynomials in ##n##, none with degree greater than 2, so it's just solving a quadratic.
 
Last edited:
  • Like
Likes SammyS
  • #14
andrewkirk said:
I'm not sure that's quite right.
It's what I get. To get that, youngstudent has already done most of what you describe. Reducing it to a quadratic is all that's left.
 
  • #15
haruspex said:
You've done the hard work. Just cube both sides, multiply out and simplify.
Ah perfect thank you I got 254 as the correct solution that was a lot of computation
 
  • #16
haruspex said:
It's what I get. To get that, youngstudent has already done most of what you describe. Reducing it to a quadratic is all that's left.
It's the first of the two formulas that I think is not right. The second is the same as mine, minus some cancelling (##\frac{(n+1)^2}{4n}<4^3##) but is not equivalent to the first. It's possible that the difference between the two is just an error in latex coding.
The purpose of my post was to indicate that one can do this problem deductively rather than just inductively.
 

1. What does it mean to "find the smallest positive integer"?

Finding the smallest positive integer means identifying the smallest whole number that is greater than zero.

2. Why is finding the smallest positive integer important in science?

Finding the smallest positive integer is important in science because it helps in solving various mathematical problems and in determining the minimum value in a set of data.

3. How do you find the smallest positive integer?

To find the smallest positive integer, you can start by listing out the positive integers in ascending order and then finding the smallest one that satisfies the given conditions.

4. Can there be multiple smallest positive integers?

No, there can only be one smallest positive integer as it is the minimum value in a set of numbers.

5. What is the difference between the smallest positive integer and the smallest whole number?

The smallest positive integer is a subset of the smallest whole number. While the smallest whole number is any number that is greater than or equal to zero, the smallest positive integer is the smallest number that is greater than zero.

Similar threads

  • Precalculus Mathematics Homework Help
Replies
9
Views
1K
  • Precalculus Mathematics Homework Help
Replies
14
Views
1K
  • Precalculus Mathematics Homework Help
Replies
3
Views
917
  • Precalculus Mathematics Homework Help
Replies
3
Views
1K
  • Precalculus Mathematics Homework Help
Replies
3
Views
836
  • Precalculus Mathematics Homework Help
Replies
2
Views
960
  • Precalculus Mathematics Homework Help
Replies
7
Views
1K
  • Precalculus Mathematics Homework Help
Replies
3
Views
790
  • Precalculus Mathematics Homework Help
Replies
10
Views
2K
  • Precalculus Mathematics Homework Help
Replies
6
Views
1K
Back
Top