Ask Your Question

santoshi's profile - activity

2024-02-27 06:04:47 +0100 received badge  Famous Question (source)
2024-01-02 21:49:02 +0100 received badge  Famous Question (source)
2023-08-02 13:18:52 +0100 received badge  Popular Question (source)
2023-02-18 08:49:13 +0100 received badge  Famous Question (source)
2022-12-09 04:47:37 +0100 received badge  Popular Question (source)
2022-11-18 17:37:39 +0100 received badge  Famous Question (source)
2022-11-18 17:37:39 +0100 received badge  Notable Question (source)
2022-11-18 17:37:39 +0100 received badge  Popular Question (source)
2022-08-06 23:26:59 +0100 received badge  Famous Question (source)
2022-07-28 05:55:19 +0100 received badge  Popular Question (source)
2022-02-21 14:35:25 +0100 received badge  Popular Question (source)
2022-02-21 14:35:20 +0100 received badge  Popular Question (source)
2021-07-29 00:44:08 +0100 received badge  Popular Question (source)
2021-06-18 20:48:17 +0100 received badge  Notable Question (source)
2021-06-18 20:48:17 +0100 received badge  Popular Question (source)
2021-06-18 20:48:17 +0100 received badge  Famous Question (source)
2021-05-13 10:15:15 +0100 received badge  Famous Question (source)
2021-04-17 10:14:41 +0100 received badge  Popular Question (source)
2021-04-15 14:53:17 +0100 received badge  Notable Question (source)
2021-03-09 11:32:27 +0100 received badge  Popular Question (source)
2021-03-09 11:22:30 +0100 received badge  Popular Question (source)
2021-02-16 21:54:26 +0100 received badge  Famous Question (source)
2021-01-23 01:35:31 +0100 received badge  Notable Question (source)
2020-12-20 03:58:44 +0100 received badge  Famous Question (source)
2020-12-06 22:57:50 +0100 received badge  Famous Question (source)
2020-09-07 21:28:59 +0100 received badge  Notable Question (source)
2020-09-05 12:43:47 +0100 received badge  Popular Question (source)
2020-07-29 13:48:14 +0100 received badge  Notable Question (source)
2020-06-15 11:48:51 +0100 received badge  Notable Question (source)
2020-06-15 11:48:50 +0100 received badge  Popular Question (source)
2020-06-15 11:47:01 +0100 received badge  Notable Question (source)
2020-06-15 11:47:01 +0100 received badge  Popular Question (source)
2020-06-15 11:47:01 +0100 received badge  Famous Question (source)
2020-05-26 17:42:13 +0100 received badge  Notable Question (source)
2020-02-19 08:28:42 +0100 received badge  Notable Question (source)
2020-02-19 08:28:42 +0100 received badge  Popular Question (source)
2020-01-18 15:11:20 +0100 asked a question how to check backend algorithm for particular function in sage math

I want to check the computation of trace () function in sagemath. what the formula they have used for computation over a prime field.

2019-12-31 04:01:00 +0100 asked a question symbolic expression

how to write symbolic expression over finite field

2019-11-22 21:54:39 +0100 received badge  Popular Question (source)
2019-10-12 22:19:16 +0100 received badge  Notable Question (source)
2019-09-07 13:45:13 +0100 received badge  Popular Question (source)
2019-09-06 12:04:41 +0100 received badge  Popular Question (source)
2019-08-08 09:10:29 +0100 commented question the following codes for 2^3 field. for the same field how to check the curve parameter A,B are the element of the field

what is the sage command to check A and B belongs to the field F.

2019-08-07 06:23:51 +0100 asked a question which function give accurate time result timeit or start time to end time

timeit() or start time to end time

2019-08-05 09:28:17 +0100 asked a question the following codes for 2^3 field. for the same field how to check the curve parameter A,B are the element of the field

.

p=(2^3) 
F1.<x>=GF(2)[] 
F.<a>=GF(2^3,'a',modulus=x^3+x+1);F.modulus();
for i,x in enumerate(F):  print("{} {}".format(i, x))

A=a^2+a;A 
B=a+1

E = EllipticCurve(F, (1,A,0,0,B));E
2019-08-05 09:16:49 +0100 commented question how to check element A and B are field element? for following code