1 | initial version |
Hello! There are various ways you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entrance for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the whole output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
2 | No.2 Revision |
Hello! There are various ways you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entrance for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the whole output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
3 | No.3 Revision |
Hello! There are various ways you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entrance for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the whole output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
4 | No.4 Revision |
Hello! There are various ways you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entrance for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the whole output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
5 | No.5 Revision |
Hello! There are various ways you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entrance for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the whole output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
6 | No.6 Revision |
Hello! There are various ways methods you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entrance for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the whole output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
7 | No.7 Revision |
Hello! There are various methods you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entrance entry for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the whole entire output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
8 | No.8 Revision |
Hello! There are various methods you can use to find that documentation in the online HTML manual.
factor?
. If you use the sage??
command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entry for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of factor??
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the entire output of this command, you are interested in the line that contains id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:
en/reference/rings_standard/sage/arith/misc.html:1461:<dt id="sage.arith.misc.factor">
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!
9 | No.9 Revision |
Hello! There are various methods you can use to find that documentation in the online HTML manual.
factor?
. If you use the
factor? (or sage??factor??
) command on your REPL, you will notice at the end of the printed text a part that says
File: /Scientific/SageMath/local/lib/python2.7/site-packages/sage/arith/misc.py
This tells you that the factor()
function is located at the module "sage.arith.misc". So go to the Sage Reference
Manual, go to the "General information" section at the end of the page, and select "Module Index". A page showing every single Python module defined by Sage will appear in alphabetical oreder. Under the "A" (for "arith") you will find the entry for "sage.arith.misc". Click on it, and you will be shown all the subroutines defined in that file, including the factor()
function.
You can use a combination of both previous methods: Use the factor??
command, where you will see the line I mentioned in point 2. Then you go to the Sage Reference Manual, click on "Index", and introduce the module name, "sage.arith.misc". You click on the name of the module when the search results appear. There you'll find the "factor()" info.
Finally, you can write search_doc('sage.arith.misc.factor', whole_word=True)
, which, of course, is based on the result of
, as in point 2. That will search the whole documentation for the words "sage.arith.misc.factor". Of the entire output of this command, you are interested in the line that contains factor??factor?id="sage.arith.misc.factor"
:
en/reference/rings_standard/sage/arith/misc.html:1461:<dt id="sage.arith.misc.factor">
Notice the part "en/reference/rings_standard/sage/arith/misc.html"? If you prepend the Reference Manual address to that ("https://doc.sagemath.org/html/en/reference/rings_standard/sage/arith/misc.html"), you will find the documentation you're looking for.
Since the PDF documentation is based on the HTML version, it should not be difficult to adapt this methods to find the PDF documentation for factor()
or any other function or method.
I hope this helps!