Determine compositions of functions

  • Thread starter Thread starter Cyborg31
  • Start date Start date
  • Tags Tags
    Functions
Click For Summary
SUMMARY

The discussion focuses on determining the compositions of the function h: Z -> Z defined as h(n) = 0 if n is even and h(n) = 1 if n is odd. It concludes that h^2 = h and h^k = h for all k ≥ 1, confirming that the function's behavior remains consistent across multiple compositions. The participants validate the correctness of the solution, emphasizing the simplicity of the conclusion derived from the initial evaluations of h.

PREREQUISITES
  • Understanding of function composition
  • Familiarity with even and odd integers
  • Basic knowledge of mathematical notation and definitions
  • Experience with recursive function definitions
NEXT STEPS
  • Study the properties of recursive functions in mathematics
  • Learn about function composition in more complex scenarios
  • Explore the implications of even and odd functions in number theory
  • Investigate the behavior of functions under repeated application
USEFUL FOR

Students and educators in mathematics, particularly those focusing on functions and their compositions, as well as anyone interested in foundational concepts in discrete mathematics.

Cyborg31
Messages
36
Reaction score
0

Homework Statement



Let h: Z -> Z be defined as follows:

h(n) = 0 if n is even and 1 if n is odd

Determine h^2, h^3, and h^500

Homework Equations


The Attempt at a Solution



If n is even, h(n) = 0 then h(h(n)) = h(0) = 0
If n is odd, h(n) = 1 then h(h(n)) = h(1) = 1

If n is even h(n) = 0 then h(h(h(n))) = h(h(0)) -> h(0) = 0
If n is odd h(n) = 1 then h(h(h(n))) = h(h(1)) -> h(1) = 1

Then for h^500, if n is even then the result is 0 and n is odd then the result is 1.

Can someone tell if that's correct?

Thanks.
 
Last edited:
Physics news on Phys.org
Hi Cyborg31!

Yes, that's right! :smile:

Why, were you worried that it wasn't? :wink:

(Of course, you could also write the result: h^2 = h, h^500 = h. :smile:)
 


Seem correct, though unnecesarily long.

Already after

If n is even, h(n) = 0 then h(h(n)) = h(0) = 0
If n is odd, h(n) = 1 then h(h(n)) = h(1) = 1

you can conclude h^2 = h and therefore h^k = h for all k >= 1.

=============================================================
Forum signature: www.lingouist.blogspot.com[/URL]
 
Last edited by a moderator:
1. Let f, g: R -> R where f(x) = ax + b and g(x) = x^2 - x + 1. If (g o f)(x) = 9x^2 - 9x + 3, determine the values of a and b.

So I got g(ax + b) = (ax + b)^2 - (ax + b) + 1

(a^2*x^2 + 2(a * b)x + b^2) - (ax + b) + 1 = 9x^2 - 9x + 3
(9x^2 + 2(3 * b)x + b^2) - (3x + b) + 1
(9x^2 + 2(3 * 2)x + 4) - (3x + 2) + 1
9x^2 + 12x + 4 - 3x - 2 + 1
9x^2 + 9x + 3

I know a = 3 and b = 2 but I'm not sure if those steps are correct. I don't think I've shown a way as to how I got the 2 for b. I got the a cause of the coefficient of the square. Anyone know if those steps are correct?

2. Let f, g: R -> R where f(x) = ax + b and g(x) = cx + d for any x element of R where a, b, c, and d are real constants. What relationships must be satisfied by the four constants for the equality: (f o g)(x) = (g o f)(x) for all x element of R?

(f o g)(x) = f(g(x)) = f(cx + d) = a(cx + d) + b
(g o f)(x) = g(f(x)) = g(ax + b) = c(ax + b) + d

a(cx + d) + b = c(ax + b) + d

I got a = c and b = d so that the coefficient and the constant matches so that they're equal. But I think I'm missing some steps of work.

Thanks.
 
Actually nm, I figured it out.
 

Similar threads

  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
4
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K