Give a recursive definition of:

  • Thread starter Thread starter caseyd1981
  • Start date Start date
  • Tags Tags
    Definition
caseyd1981
Messages
10
Reaction score
0
Give a recursive definition of

a) the set of odd positive integers
b) the set of positive integer powers of 3
c) the set of polynomials with integer coefficients


I have the first two:
a) f(0)=1, f(n)=f(n-1)+2 for n>=1
b) f(0)=1, f(n)=3f(n-1) for n>=1

For c, I am not even quite sure exactly what it is asking or where to begin?
 
Physics news on Phys.org
Welcome to PF!

caseyd1981 said:
Give a recursive definition of
c) the set of polynomials with integer coefficients

For c, I am not even quite sure exactly what it is asking or where to begin?

Hi caseyd1981! Welcome to PF! :smile:

Hint: the first step is find a way of putting them in order. :wink:
 
Oh boy, I'm not sure that I follow...??
 
caseyd1981 said:
Oh boy, I'm not sure that I follow...??

If it's recursive, you must put them in order, so that you know which is the next one at each stage …

and you can't put them, for example, in the order x+1, x+2, x+3, … , going "up to infinity", and then start on 2x+1, 2x+2, 2x+3, …, because 2x+1 won't be the next one to anything.

So you need a way of putting them in order, without ever "going off to infinity" and leaving some behind for later.

How can you do that? :smile:
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top