Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Problem. write the equation of the line cut the two lines d1: x = 2*t, y= -t+1, z = t-2, d2: x = -1+2*m, y = 1+m, z = 3 and perpendicular to the plane 7*x+y-4*z=0. 

This is my code. 

> restart;with(geom3d):

with(LinearAlgebra):

a:=[2*t,-t+1,t-2]:

b:=[-1+2*m,1+m,3]:

line(d1,a,t):

line(d2,b,m):

Hi,  if i have a matrix 4x4 as

A=[I          Y        -X        aX

     bY        Z         o          o

      X^T     O^T     0         0

       o^T  O^T       0         q ]   

With(geom3d), equation of  a line has the form a parametric equation. How  i can get canonical equation of a line? Please help me?

1dim_roots.mw

All critics and new ideas would be appreciated.

Hi everyone, I have a question:

In case if I assign for example:

x:=2:

y:=3:

z:=x+y;

Maple will print (output) solution in form :

                                                  ...

What does error message in Title mean, and how can I cure it? (I cannot copy and paste from my .ws into thie question box).

Best ragards,     Michael Caola

 

I can't write a program to solve the following problem:

The first two terms of a sequence are a1 = 1, a2 = 1/sqrt(3). For n >=1, a(n+2) = (an + a(n+1))/(1-an*a(n+1)). What is a2012?

Hi

I'm working with some rather complicated functions in Maple. They are elements in matrices, and I need to perform mattrix operations on them, as well as integrations. When I try this with my complete functions, Maple locks up. Therefore I am trying to make approximations to some of the functions. The example below shows an example, where the complicated function (green) is denoted theta24. I comvert it to a 5th degree polynomial (red). But the approximation only...

I would see on the monitor the vector n > 10 with all his components, but the output of Maple is always the structure of the vectors.

For example, if I write:

Is it possible to paint in black and white colors the cells of 5x5 grid so that each 3x3 square contains exactly 5 black cells and  each 2x4 rectangle (vertical or horisontal) contains exactly 4 black cells? How to answer this with Maple?

Hi,    I have the following    

for i from 1 to 100 do    x[i]:=cos(θ[i]);     y[i]:=sin(θ[i])  end do; 

Now I want to find the first and second derivatives for x[i] and y[i] which are

for i from 1 to 100 do     x1dot[i]:=-sin(θ[i]);     y1dot[i]:=cos(θ[i]); 

                         ...

A very useful feature of the plotting program gnuplot is that you can generate an output which is a file instead of a graph. For instance the following short script

################
f(x)=sin(x)+cos(pi*x)
set samples 5000         
set table "outfile.dat"
plot [0:10][] f(x)
################

produces a  file containing a sampling of the function f(x) on the interval [0,10] based on a grid...

Can someone help me to generate the same, identical grpah over several periods in x-axis? In exact term, I mean that I need to plot a periodical grpah, that repeats itself over the interval? It is like given a periodical function and now have to draw it many times...(function can be any form, not only sine and cosine)
 

how to override Array type? Want workaround next behaviour for float array:

a:=Array(1..10,datatype=float)

a[1]:=((2)^(4/9)+sqrt(2));
Error, unable to store 't^(4/9)+2^(1/2)' when datatype=sfloat

i.e. to call convertor before assignment. Can i principally to do so?

And yes, no hfloats. I need sfloat. Sow in help that some types could be created like objects (stack, queue etc).

with(SumTools):
rsolve({c*(n+beta)*P(n+1)/(-1+c)+(c*(x+beta)/(1-c)-x)*P(n)+n*P(n-1)/(-1+c)=0,P(0)=1}, P, 'genfunc'(z));

all given, but rsolve said invalid options, why P not in terms of other variables?

First 1611 1612 1613 1614 1615 1616 1617 Last Page 1613 of 2223