La recherche a retourné 160 résultats

par XcasEngGuy
mer. mai 28, 2025 7:00 pm
Forum : Xcas - English
Sujet : Distribute power into quantity
Réponses : 2
Vues : 528

Re: Distribute power into quantity

Thank you. That would have taken me a long time to figure out!

Matt
par XcasEngGuy
lun. mai 26, 2025 7:44 pm
Forum : Xcas - English
Sujet : Distribute power into quantity
Réponses : 2
Vues : 528

Distribute power into quantity

Is there a command that will convert:

(V1/V2)^k

to

V1^k/V2^k

?
par XcasEngGuy
ven. mai 16, 2025 8:01 pm
Forum : Annonces
Sujet : 2.0.0
Réponses : 5
Vues : 2372

Re: 2.0.0

by clicking on an HTML file android should ask what to open it with. If it already has an association you have to clear the default association to enable the chooser.

For Samsung:
https://www.samsung.com/my/support/mobi ... on-android
par XcasEngGuy
mer. déc. 04, 2024 6:49 pm
Forum : Bugs
Sujet : integrating the diff command
Réponses : 1
Vues : 5958

integrating the diff command

I have a small problem. Integrating the diff command works well up to the 3rd derivative <meaning diff(y(x),x,3)>
window.jpg
window.jpg (73.72 Kio) Consulté 5958 fois
I actually use this. Fixable?

Matt
par XcasEngGuy
mar. nov. 19, 2024 5:27 pm
Forum : Xcas - English
Sujet : substituting constant into slope equation
Réponses : 3
Vues : 6511

Re: substituting constant into slope equation

I am still curious about what's shown in eq18 through eq22 in my example. In eq19 I "recreate" the first equation in eq18 by setting the left hand side equal to the right hand side. After that recreation the normal command functions as I like (eq20 and eq22). However, normal(eq18) does not even thou...
par XcasEngGuy
lun. nov. 18, 2024 6:55 pm
Forum : Xcas - English
Sujet : simplify(expr, 'pol')
Réponses : 5
Vues : 9306

Re: simplify(expr, 'pol')

That would be an easy command to create with xcas programming
par XcasEngGuy
lun. nov. 18, 2024 6:51 pm
Forum : Bugs
Sujet : Copy example to command line
Réponses : 4
Vues : 7033

Re: Copy example to command line

When I left-click on an example I get the whole example. Can you clarify?
par XcasEngGuy
sam. nov. 16, 2024 6:56 pm
Forum : Xcas - English
Sujet : substituting constant into slope equation
Réponses : 3
Vues : 6511

Re: substituting constant into slope equation

Thanks, I'll try that.
par XcasEngGuy
ven. nov. 15, 2024 8:20 pm
Forum : Xcas - English
Sujet : substituting constant into slope equation
Réponses : 3
Vues : 6511

substituting constant into slope equation

I noticed something interesting. I work a lot with integrating differential equations for bending of beams. After finding the equations for the slope and deflection of a beam, I need to calculate those values at a point on the beam. I have attached the .xws file and the pdf I can create from the Lat...
par XcasEngGuy
sam. août 03, 2024 2:36 am
Forum : Xcas - English
Sujet : subst cmd
Réponses : 9
Vues : 14449

Re: subst cmd

I know it was recently added. I found out about it here after I asked a question

viewtopic.php?f=19&t=2867

Matt
par XcasEngGuy
mer. juil. 31, 2024 5:37 pm
Forum : Xcas - English
Sujet : subst cmd
Réponses : 9
Vues : 14449

Re: subst cmd

By the way, I usually collect my initial parameters in an array which means I can substitute them all at once into an equation by simply referencing the array name in the 2nd argument to subst. I also do this with solved variables as I progress in a solution. For example: eq1:=tran(x1=5.368,y1=2.294...
par XcasEngGuy
mer. juil. 31, 2024 5:26 pm
Forum : Xcas - English
Sujet : subst cmd
Réponses : 9
Vues : 14449

Re: subst cmd

I use "quote" as the third argument (without quote marks) to substitute without simplification. This is very useful for teaching, as it is more like algebra done on paper. Is there some other intended use?
par XcasEngGuy
mer. juil. 17, 2024 5:20 pm
Forum : Xcas - English
Sujet : subst cmd
Réponses : 9
Vues : 14449

Re: subst cmd

Use:

subst(a*x^2+b*x+c, [a = -6,b = -4,c = 2]); [ENTER]

then you can have as many as you want
par XcasEngGuy
ven. mai 31, 2024 7:09 pm
Forum : Xcas - English
Sujet : (1>x) => (x<1)
Réponses : 5
Vues : 9693

Re: (1>x) => (x<1)

I have done a lot of work (programming in Xcas and cygwin) to make the output from Xcas more understandable to students. Intermediate steps in the Algebra and Calculus seemed more important to students.
par XcasEngGuy
lun. avr. 01, 2024 6:14 pm
Forum : Xcas - English
Sujet : low level substitution
Réponses : 9
Vues : 13621

Re: low level substitution

By the way, thank you very much for this addition to subst. I use it extensively (with autosimplify off). It makes my derivations for class much more understandable.