Ask Your Question

kuon's profile - activity

2024-02-22 21:10:10 +0200 received badge  Popular Question (source)
2021-05-10 14:00:36 +0200 commented question How can I isolate and print term

With the accepted answer, I can do view(a == sols[0][a]) which is what I meant.

2021-05-10 13:29:40 +0200 marked best answer How can I isolate and print term

Given the following:

a = var('a')
b = var('b')
c0 = var('c0')
c1 = var('c1')

eq1 = a==exp(b)
eq2 = b==4*c0+2*c1


solve([eq1, eq2], a, b, c0, c1, solution_dict=True)

[{a: e^r5, b: r5, c0: r6, c1: 1/2*r5 - 2*r6}]

I'd like extract a and have something similar to what I would have if I did: view(a==exp(4*c0+2*c1)).

2021-05-10 13:29:40 +0200 received badge  Scholar (source)
2021-05-10 13:29:39 +0200 received badge  Supporter (source)
2021-05-10 09:08:21 +0200 received badge  Student (source)
2021-05-10 02:21:47 +0200 asked a question How can I isolate and print term

How can I isolate and print term Given the following: a = var('a') b = var('b') c0 = var('c0') c1 = var('c1') eq1 = a=