Rouben Rostamian

MaplePrimes Activity


These are replies submitted by Rouben Rostamian

@Earl Yes, normals to two smooth (i.e. differentiable) surfaces at their point of tangency are always collinear.  That's a consequence of the following two definitions.

  1. Definition: Two smooth surfaces are tangent to each other at a common point P if their tangent planes at P coincide. 
  2. Definition: A normal vector to a smooth surface at a point P is a (nonzero) vector which is perpendicular to the tangent plane at P.

Show what you did to get a solution that looks like a step function.

In general, it is a good idea to upload a worksheet to show your work rather than saying something vague like "it didn't work".

 

People here will be happy to help with you with problems that you encounter in using Maple, but they are not here to do your homework problems for you.

Show what you have done so far, and point out where you need help.

 

Your calculation shows that KdV_f has a term with the fifth derivative of f with respect to x, but your target equation has at most the fourth derivative.  Are you sure that you are looking at the right thing?

 

@suvetha2000 I expect that the solution that I have shown to gain all 3 marks on Qs1ci.

As to Qs1Cii, the solution is more of a conceptual type rather than computational.  It is possible to use Maple to express some of the concepts however that use is really superfluous since you will need to work out the answer in your head anyway.

 

 

@suvetha2000 If you are asked to take someone's picture and you take a picture of the back of their head, that's not wrong, but that's not quite what is expected. In that same sense, your graphs are not wrong, but they miss the interesting region of activity.  If I were to mark that work, I would give 1 out of 3 points.

 

There are various ways of building flexibility in an essentially one-dimensional object which would be the curve of descent.  The simplest models are those of the Euler beam (from the 1700s) and the Timoshenko beam (from the early 1900s) each of which leads to a fourth order linear partial differential equation (see their respective entries in Wikipedia).  Neither of these is suitable for the problem that you have posed since they are valid only under infinitesimal displacements.

The theory of finite deformation of one-dimensional structures is called rod theory and is quite complex. Stuart Antman's article, The Theory of Rods, has a detailed exposition.  The equations are heavily nonlinear and I am afraid too involved for an elementary optimization analysis.
 

Thanks, acer, for this very useful option.  It's good enough to be merged into the future releases of Maple.

 

@wlferguson19  Change the line
pdsol:-animate(t=0..0.3, frames=40);
to
pdsol:-animate(t=0..0.3, frames=40, title="time = %f");

Does that do what yiou want?

  

@wlferguson19 Oh, I see;  I didn't notice that you had written Ux to indicate derivatives.  All's well.

The line
t:= textplot3d([-1.1,1.1,1,typeset(`#mover(mi(` || v ||  `),mo("→"))`)]):
can be entered more succinctly as
t:= textplot3d([-1.1,1.1,1,`#mover(mi("v"),mo("→"))`]);
and of course this is independent of the Physics package.

 

@Jjjones98 I can't think of a way for doing that. Perhaps someone else can come up with an idea.

 

restart;
with(plots):
S:=cat("Happy New Year 2020!   "$3):
N:=length(S): h:=2*Pi/N:
frame := proc(t)
  seq(textplot([cos(-k*h+t), sin(-k*h+t),S[k+1]],
                rotation=-Pi/2-k*h+t,
                'font'=["times","roman",20]),
       k=0..N-4);
  display([%]);
end:
nframes := 60:
frames := seq(frame(2/3*Pi*i/nframes), i=0..nframes-1):
display([frames], insequence, axes=none);

@Carl Love The rope is assumed to have no flexural resistance.  Think of it as a chain.

It is possible to put in flexural resistance.  That model is called a beam.  (An Euler beam, to be precise.)  The PDE will be different.  Each of the two x derivatives will be replaced by second order derivatives with respect to x, so altogether the left-hand side of the equation will turn into a fourth order differential operator.  The right-hand side will retain the second order derivative with respect to t.

You are correct in observing that the y coordinate of the end is constant.  This is because the equation is limited to small displacements and as such the points move laterally but not up and down.  (The up and down movement of the points is of the second order in displacements and therefore it is ignored.)  It is possible to derive the equation of motion without the smallness assumption but that is an unpleasant mess.

 

The term f'''(η0) appears in equation (16) but neither f nor η0 shows up in the subsequent equations.  I see that you did not include that term in your worksheet.  Perhaps the paper that you are reading explains what needs to be done with that term. Let us know.

Moreover, it would be good to see equation (15) and the problem's boundary conditions which are referenced in what you have shown.

 

First 40 41 42 43 44 45 46 Last Page 42 of 99