gph_mix

5 Reputation

2 Badges

13 years, 98 days

MaplePrimes Activity


These are questions asked by gph_mix

Hi

How can I resize inline plot-window without mouse? (I know about resize tool, but it displays plot in new window :( )

And how can I display 5 plots in one line one by one?

Thx :)

Hi

I've got a list of inequalities

[x > 5, 10 < x]

and I need to plot the region by

plots[inequal]( [x > 5, 10 < x], x = 4 .. 11, y = 0 .. 1);

but I don't want to specify x-range.

So how can I get the numbers from inequalities and generate something like "x = 5-1 .. 10+1"?

 

Thx :)

Hi guys

Is there any build-in function which converts [[x>5, x<10], [x < 0]] to "x>5 and x<10 or x<0"? I've written my own function, but I want something build-in.

Thanks :)

Can maple solve this kind of inequality:
piecewise(x > k, x-k, 0) > q * piecewise(x*(1+a) - k > 0, x*(1+a) - k, 0) + p * piecewise(x*(1+b) - k > 0, x*(1+a) - k, 0)
where p, q, a, b, k are parameters?

I'm trying solve-command with allsolutions option but it doesn't work :(

 

Thanks for answering :)

Hi

How can I use loop-varible in a definition of piecewise function? For example, when I do:

for k to 5 do

f[k] := x -> piecewise(x > 0, k, 0);

end do;

f[3](1);

f[2](1);

 

I get:

f[3](1) = 6

f[2](1) = 6

Page 1 of 1