Recent content by peter.a

  1. P

    Induced Measure: Understanding the Concept

    What is an induced measure? I have seen the formal definition many times i am trying to get a grasp of this concept. Does an induced measure mean that we can view the measure associated with a random variable as some co-ordinate function defined on R? Is it the cdf?
  2. P

    What is the mean and autocorrelation function for the given process?

    Homework Statement Let V₁,V₂,r be independant random variables where V₁,V₂ are gausian with the same distribution and r is uniformly distributed in [0,1] and X(t)=V₁I(r<t)+V₂I(r≥t) a)find the mean of this process: b) find the autocorelation function of this process...
  3. P

    Solving an equation with conditional solutions

    f[x_] := x^2 + c; y = Solve[f'[f[x]] == 1, x, Reals] output: {{x -> ConditionalExpression[Root[-1 + 4 c #1 + 4 #1^3 &, 1], c > -(3/4) || c < -(3/4)]}, {x -> ConditionalExpression[Root[-1 + 4 c #1 + 4 #1^3 &, 2], c < -(3/4)]}, {x -> ConditionalExpression[Root[-1 + 4 c...
  4. P

    Inverse fourier transform

    Homework Statement I can't figure out what the limits of integration should be; if a transfer function is given as follows: h(ω)=1 if 1<|ω|<2, 0 otherwise 1) find the impulse response 2) if the input is white noise of intensity σ² find the variance of the output signal 3)state...
  5. P

    Find Solutions of h'[x] >= 1 in Terms of k

    the solution for x is an inequality, shouldn't the solution for k then also be an inequality ?
  6. P

    How can i use the Solve function to find the actual equation for a

    Thanks for clearing that up, because i was getting confused
  7. P

    Find Solutions of h'[x] >= 1 in Terms of k

    h[x_] = x^3 +x^2+ k; Solve[h[x] == 0, k] {{k -> -x^2 - x^3}} Reduce[Abs[h'[x]] >= 1, x] Re[x] < -(1/2) || (-(1/2) <= Re[x] <= 1/2 && (Im[x] <= -(1/2) Sqrt[1 - 4 Re[x]^2] || Im[x] >= 1/2 Sqrt[1 - 4 Re[x]^2])) || Re[x] > 1/2 Now i want to express these inequalities in terms of the value of k...
  8. P

    How can i use the Solve function to find the actual equation for a

    why have you done f[f[u]==u and not f[u]==u? is this because then it also gives the complex solutions?
  9. P

    How can i use the Solve function to find the actual equation for a

    How can i use the Solve function to find the actual equation for a fixed point? For the function f(x)=ur(1-u)
  10. P

    Mathematica Iterative Function with Last 10 Values for Any Input Constant K

    Yeah it wasn't working for a bit and i double posted as well. In answer to your question i am new to mathematica and am just practising working through different things. I am following what i see in the online tutorials for the most part.
  11. P

    Mathematica Solving a Mathematica Function of 2 Variables w/ Nestlist

    Thts amazing! I am a bit intimidated by the fact you did in 2 seconds what i have been working on for the better part of an hour. Thanks. can you tell me how i can plot this stored data using ListPlot ? to see what the relationship is between x and the y values
  12. P

    Mathematica Iterative Function with Last 10 Values for Any Input Constant K

    Hi Bill This is exactly what I am stuck on; I have a function as follows defined; f[a_][x_] := x^2 + a; Then i define w[a_] := Take[NestList[f[-1.8], 0, 1000], 100] Similar to what you mentioned in the previous post Now i want to evaluate this for different values of the constant a...
  13. P

    Mathematica Solving a Mathematica Function of 2 Variables w/ Nestlist

    I have a function of two variables f[x_][y_]=x^2+y; d=Take[NestList[f[-2],0,10],-2]; now i want to repeat this process by changing -2 to -1.99, then -1.98 all the way up to 0 and storing values in a table, so i can later make a plot. I can't figure out how to repeat this process.
  14. P

    Mathematica Iterative Function with Last 10 Values for Any Input Constant K

    Could you explain to me how it works, so i can apply it to other functions, when i try and use thje code for a different function f i get errors?
Back
Top