Question

Consider that the wave length function is defined as ϕn1,n2 (x,y) = 2/a sin(n1πx/a)sin(n2πy/a). Make a...

Consider that the wave length function is defined as ϕn1,n2 (x,y) = 2/a sin(n1πx/a)sin(n2πy/a).
Make a contour graph in 2D for each of the following functions: ϕ1,1 , ϕ1,2 , and ϕ2,1
(use a=1)
0 0
Add a comment Improve this question Transcribed image text
Answer #1

\phi_{1,1}

0.8 0.6 0.4 0.2 -0.2 0.4 -0.6 0.8 -1 1 0.8 -0.6 -0.4 -0.2 0 0.2 04 0.6 0.81

01.2

0.8 0.6 0.4 0.2 -0.2 -0.4 0.6 0.8 -1 1 0.8 -0.6 -0.4 -0.2 0 0.2 04 0.6 0.81

021

0.8 0.6 0.4 0.2 0.2 0.6 0.8 -1 1 0.8 -0.6 -0.4 -0.200.2 0.4 0.6 0.8 1

I have plotted in matlab live script, here is the code in case you need

clc;
clear;

x=-1:0.01:1;
y=-1:0.01:1;
[X,Y] = meshgrid(x,y);

%phi_1,1
Z1 = 2.*sin(1.*pi.*X).*cos(2.*pi.*Y);

%phi_1,2
Z2 = 2.*sin(1.*pi.*X).*cos(4.*pi.*Y);

%phi_2,1
Z3 = 2.*sin(2.*pi.*X).*cos(2.*pi.*Y);

contour(X,Y,Z1)
contour(X,Y,Z2)
contour(X,Y,Z3)

Add a comment
Know the answer?
Add Answer to:
Consider that the wave length function is defined as ϕn1,n2 (x,y) = 2/a sin(n1πx/a)sin(n2πy/a). Make a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • (1 point) A function f is defined on the whole of the x, y-plane as follows: f(x,y)0 fy0 otherwise For each of the foll...

    (1 point) A function f is defined on the whole of the x, y-plane as follows: f(x,y)0 fy0 otherwise For each of the following functions g determine if the corresponding functionf is continuous on the whole plane. Use "T" for true,"F" for false 2. g(x, y) 9x2y 3. gx, y)-4 sin) 4. g(x, y) xy sin(xy) 5. g(x, y) 3xy (1 point) A function f is defined on the whole of the x, y-plane as follows: f(x,y)0 fy0 otherwise For...

  • Consider the function below. y z= 2+x+ (a) Match the function with its graph (labeled A-F)....

    Consider the function below. y z= 2+x+ (a) Match the function with its graph (labeled A-F). (b) Match the function with its contour map (labeled 1-VI). O V VI Give reasons for your choices. Select- Also, the values of z approach 0 as we use This function is not periodic, ruling out the graphs in (b) Match the function with its contour map (labeled I-VI) II III IV V VI Give reasons for your choices. This function is not periodic,...

  • 1. Consider the function y - f(x) defined by Supposing that you are given x, write...

    1. Consider the function y - f(x) defined by Supposing that you are given x, write an R expression for y using if state- ments. Add your , then run it to plot the function jf # input x.values <- seq(-2, 2, by - 0.1) expression for y to the following program # for each x calculate y n <- length(x.values) y.values <- rep(0, n) for (i in 1:n) t x <- x.values [i] # your expression for y goes...

  • Consider the function y = 2 sin(- ++) + 1. i) Fill in the following blanks:...

    Consider the function y = 2 sin(- ++) + 1. i) Fill in the following blanks: Amplitude: Period: Phase Shift: Vertical Shift: An interval on which to graph one full period: ii) Graph the function y and identify the key points on full period. Graph of y = 2 sin( - ++)+1

  • 11.9 A sinusoidal wave is described by the wave function, y# (0.27 m) sin(0.22x-34t) where x...

    11.9 A sinusoidal wave is described by the wave function, y# (0.27 m) sin(0.22x-34t) where x and y are in meters and t is in seconds. Determine the following for this wave (a) the amplitude (b) the angular frequency rad/s (c) the angular wave number rad/m (d) the wavelength 25.56 What is the relationship between the wave number and the wavelength? m e) the wave speed The speed can be calculated from a number of quantities that involve the length...

  • Normalize the wave function sin (pi x /L) defined in the domain from zero to L.

    Normalize the wave function sin (pi x /L) defined in the domain from zero to L.

  • Consider a wave-packet of the form y(x) = e-x+7(204) describing the quantum wave function of an...

    Consider a wave-packet of the form y(x) = e-x+7(204) describing the quantum wave function of an electron. The uncertainty in the position of the electron may be calculated as Ax = V(x2) – ((x))2 where for a function f(x) the expectation values () are defined as (f(x)) = 5-a dx|4(x)/2 f(x) so dx|4(x)2 Calculate Ax for the wave packet given above. (Hint: you may look up the Gaussian integral.]

  • 1. Consider the function y f(x) defined by Supposing that you are given x, write an...

    1. Consider the function y f(x) defined by Supposing that you are given x, write an R expression for y using if state- ments Add your expression for y to the following program, then run it to plot the function f. # input x,values <-seq(-2, 2, by 0.1) # for each x calculate y n <- length(x.values) y.values <- rep(0, n) for (i in 1 :n) x <- x. values[i] # your expression for y goes here y.values ij <-...

  • 1. Consider the function y f(x) defined by Supposing that you are given x, write an...

    1. Consider the function y f(x) defined by Supposing that you are given x, write an R expression for y using if state- ments Add your expression for y to the following program, then run it to plot the function f. # input x,values <-seq(-2, 2, by 0.1) # for each x calculate y n <- length(x.values) y.values <- rep(0, n) for (i in 1 :n) x <- x. values[i] # your expression for y goes here y.values ij <-...

  • 5. Consider Legendre equation for a function y(x) defined in the interval -1. Changing the variab...

    5. Consider Legendre equation for a function y(x) defined in the interval -1. Changing the variable y(cos θ) x cos θ in equation (1) derive the trigonometric form of Legendre equation for a function T (0) where 0 θ π: sin θ Then the general solution to (3) is T (0) y(cos θ) AP, (cos0) + BQ, (cos0). 5. Consider Legendre equation for a function y(x) defined in the interval -1. Changing the variable y(cos θ) x cos θ in...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT