Ask Your Question

lolora's profile - activity

2023-05-25 11:35:54 +0200 received badge  Notable Question (source)
2023-05-25 11:35:54 +0200 received badge  Popular Question (source)
2022-12-31 10:32:19 +0200 received badge  Popular Question (source)
2022-07-12 19:06:30 +0200 received badge  Famous Question (source)
2021-09-23 09:00:47 +0200 received badge  Notable Question (source)
2021-05-13 06:59:04 +0200 received badge  Popular Question (source)
2021-03-26 01:42:10 +0200 received badge  Popular Question (source)
2020-07-06 01:00:07 +0200 commented answer How do I solve cos(2*t)==sin(t)

How can I add an interval, to arrive at one answer here. My answer should be between 0, pi/2

2020-07-06 00:59:35 +0200 commented answer How do I solve cos(2*t)==sin(t)

How can I add an interval, to arrive at one answer here. My answer should be between 0, pi/2

2020-07-05 20:23:10 +0200 received badge  Editor (source)
2020-07-05 20:22:18 +0200 asked a question How do I solve cos(2*t)==sin(t)

I tried solving

solve(cos(2*t)==sin(t),t)

I got

[cos(2*t) == sin(t)]

But this shouldn't be the value. I know from the graphs that the value is numeric.

I have also noticed that sagemath is not good for solving trig identities. Is this true?

2020-07-05 03:32:28 +0200 asked a question why doesn't sage solve ln

I have a simple equation to solve

solve(ln(x) -2 > 0,x)

The actual value should be $x > e^2$

but sagemath gives

[[log(x) - 2 > 0]]

How do I get actual value?

2020-07-04 23:46:29 +0200 received badge  Student (source)
2020-07-04 19:49:23 +0200 asked a question why sagemath returns 2 solution instead of one

when I run the expression

solve([x>=3, x >=5, x < 8],x)

It returns

[[5 < x, x < 8], [x == 5]]

But I'm hoping that it would return

[[5 <= x, x < 8]]

How do I get my expected value?

2020-07-04 19:34:36 +0200 asked a question how do I test if a function is continuous

Is there a way to test programmatically if a function is continuous?

e.g $f(x) = \frac{1}{x} $

I'm looking for a function is_continuous(f) = False

2020-07-04 14:59:49 +0200 received badge  Scholar (source)
2020-06-28 02:19:32 +0200 asked a question How do I differentiate an implicit function in sagemath?

I'm trying to differentiate an implicit expression

$x e^{y} = x -y$

This is my sagemath code

x = var('x')
f(x,y)= x*e**y - x + y
show(diff(f))

Sagemath Answer is $\left( x, y \right) \ {\mapsto} \ \left(e^{y} - 1,\,x e^{y} + 1\right)$

But the actual answer is $\frac{1 - e^{y}}{x e^{y} + 1}$

How do I get the actual answer using sagemath?

2020-06-28 02:19:31 +0200 asked a question how do I differentiate an implicit equation

I'm trying to differentiate an implicit expression

$x e^{y} = x -y$

This is my sagemath code

x = var('x')
f(x,y)= x*e**y - x + y
show(diff(f))

Sagemath Answer is $\left( x, y \right) \ {\mapsto} \ \left(e^{y} - 1,\,x e^{y} + 1\right)$

But the actual answer is $\frac{1 - e^{y}}{x e^{y} + 1}$

How do I get the actual answer using sagemath?