Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Latest commit

 

History

History
400 lines (310 loc) · 11.6 KB

20098.md

File metadata and controls

400 lines (310 loc) · 11.6 KB

Issue 20098: doctest fix for: Re/Im(tanh) wrong formula

archive/issues_019861.json:

{
    "assignees": [],
    "body": "<div id=\"comment:0\"></div>\n\nIn analogy to #19791:\n\n```\nsage: tanh(1+2*I).n()\n1.16673625724092 - 0.243458201185725*I\nsage: tanh(1+2*I).real().n()\n0.202053272732553\nsage: tanh(1+2*I).imag().n()\n-0.579697798322816\nsage: tanh(x).real()\ntanh(real_part(x))/(tan(imag_part(x))^2*tanh(real_part(x))^2 + 1)\nsage: tanh(x).imag()\ntan(imag_part(x))/(tan(imag_part(x))^2*tanh(real_part(x))^2 + 1)\n```\nSee for example http://dlmf.nist.gov/4.35.E36\n\nWill be fixed in Pynac-0.6.3 and should be doctested here.\n\nCC:  @behackl\n\nComponent: **symbolics**\n\nAuthor: **Ralf Stephan**\n\nBranch/Commit: **[`9eafdee`](https://github.com/sagemath/sagetrac-mirror/commit/9eafdee72e2d440a0ae9f7b47125a867a1524960)**\n\nReviewer: **Marc Mezzarobba**\n\n_Issue created by migration from https://trac.sagemath.org/ticket/20098_\n\n",
    "closed_at": "2016-03-28T07:24:10Z",
    "created_at": "2016-02-23T07:42:14Z",
    "labels": [
        "https://github.com/sagemath/sage/labels/c%3A%20symbolics",
        "https://github.com/sagemath/sage/labels/p%3A%20major%20/%203",
        "https://github.com/sagemath/sage/labels/bug"
    ],
    "milestone": "https://github.com/sagemath/sage/milestones/sage-7.1",
    "reactions": [],
    "repository": "https://github.com/sagemath/sage",
    "title": "doctest fix for: Re/Im(tanh) wrong formula",
    "type": "issue",
    "updated_at": "2016-03-28T07:24:10Z",
    "url": "https://github.com/sagemath/sage/issues/20098",
    "user": "https://github.com/rwst"
}

In analogy to #19791:

sage: tanh(1+2*I).n()
1.16673625724092 - 0.243458201185725*I
sage: tanh(1+2*I).real().n()
0.202053272732553
sage: tanh(1+2*I).imag().n()
-0.579697798322816
sage: tanh(x).real()
tanh(real_part(x))/(tan(imag_part(x))^2*tanh(real_part(x))^2 + 1)
sage: tanh(x).imag()
tan(imag_part(x))/(tan(imag_part(x))^2*tanh(real_part(x))^2 + 1)

See for example http://dlmf.nist.gov/4.35.E36

Will be fixed in Pynac-0.6.3 and should be doctested here.

CC: @behackl

Component: symbolics

Author: Ralf Stephan

Branch/Commit: 9eafdee

Reviewer: Marc Mezzarobba

Issue created by migration from https://trac.sagemath.org/ticket/20098


archive/issue_events_281332.json:

{
    "actor": "https://github.com/rwst",
    "created_at": "2016-02-23T07:42:14Z",
    "event": "milestoned",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "milestone_number": null,
    "milestone_title": "sage-7.1",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281332"
}

archive/issue_events_281333.json:

{
    "actor": "https://github.com/rwst",
    "created_at": "2016-02-23T07:42:14Z",
    "event": "labeled",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "label": "https://github.com/sagemath/sage/labels/c%3A%20symbolics",
    "label_color": "0000ff",
    "label_name": "c: symbolics",
    "label_text_color": "ffffff",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281333"
}

archive/issue_events_281334.json:

{
    "actor": "https://github.com/rwst",
    "created_at": "2016-02-23T07:42:14Z",
    "event": "labeled",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "label": "https://github.com/sagemath/sage/labels/p%3A%20major%20/%203",
    "label_color": "ffbb00",
    "label_name": "p: major / 3",
    "label_text_color": "ffffff",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281334"
}

archive/issue_events_281335.json:

{
    "actor": "https://github.com/rwst",
    "created_at": "2016-02-23T07:42:14Z",
    "event": "labeled",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "label": "https://github.com/sagemath/sage/labels/bug",
    "label_color": "d73a4a",
    "label_name": "bug",
    "label_text_color": "ffffff",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281335"
}

archive/issue_comments_288198.json:

{
    "body": "Description changed:\n``````diff\n--- \n+++ \n@@ -12,4 +12,6 @@\n sage: tanh(x).imag()\n tan(imag_part(x))/(tan(imag_part(x))^2*tanh(real_part(x))^2 + 1)\n ```\n+See for example http://dlmf.nist.gov/4.35.E36\n+\n Will be fixed in Pynac-0.6.3 and should be doctested here.\n``````\n",
    "created_at": "2016-02-23T08:12:45Z",
    "formatter": "markdown",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_comment",
    "url": "https://github.com/sagemath/sage/issues/20098#issuecomment-288198",
    "user": "https://github.com/rwst"
}

Description changed:

--- 
+++ 
@@ -12,4 +12,6 @@
 sage: tanh(x).imag()
 tan(imag_part(x))/(tan(imag_part(x))^2*tanh(real_part(x))^2 + 1)
 ```
+See for example http://dlmf.nist.gov/4.35.E36
+
 Will be fixed in Pynac-0.6.3 and should be doctested here.

archive/issue_comments_288199.json:

{
    "body": "Branch: **[u/rws/re_im_tanh__wrong_formula](https://github.com/sagemath/sagetrac-mirror/tree/u/rws/re_im_tanh__wrong_formula)**",
    "created_at": "2016-03-25T13:46:07Z",
    "formatter": "markdown",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_comment",
    "url": "https://github.com/sagemath/sage/issues/20098#issuecomment-288199",
    "user": "https://github.com/rwst"
}

Branch: u/rws/re_im_tanh__wrong_formula


archive/issue_comments_288200.json:

{
    "body": "<div id=\"comment:4\"></div>\n\nNew commits:\n<table><tr><td><a href=\"https://github.com/sagemath/sagetrac-mirror/commit/9eafdee72e2d440a0ae9f7b47125a867a1524960\"><code>9eafdee</code></a></td><td><code>20098: doctest fix for Re/Im(tanh) wrong formula</code></td></tr></table>\n",
    "created_at": "2016-03-25T13:47:08Z",
    "formatter": "markdown",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_comment",
    "url": "https://github.com/sagemath/sage/issues/20098#issuecomment-288200",
    "user": "https://github.com/rwst"
}

New commits:

9eafdee20098: doctest fix for Re/Im(tanh) wrong formula

archive/issue_events_281336.json:

{
    "actor": "https://github.com/rwst",
    "created_at": "2016-03-25T13:47:08Z",
    "event": "labeled",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "label": "https://github.com/sagemath/sage/labels/needs%20review",
    "label_color": "7fff00",
    "label_name": "needs review",
    "label_text_color": "ffffff",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281336"
}

archive/issue_events_281337.json:

{
    "actor": "https://github.com/rwst",
    "created_at": "2016-03-25T13:47:08Z",
    "event": "renamed",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "title_is": "doctest fix for: Re/Im(tanh) wrong formula",
    "title_was": "Re/Im(tanh) wrong formula",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281337"
}

archive/issue_comments_288201.json:

{
    "body": "Commit: **[`9eafdee`](https://github.com/sagemath/sagetrac-mirror/commit/9eafdee72e2d440a0ae9f7b47125a867a1524960)**",
    "created_at": "2016-03-25T13:47:08Z",
    "formatter": "markdown",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_comment",
    "url": "https://github.com/sagemath/sage/issues/20098#issuecomment-288201",
    "user": "https://github.com/rwst"
}

Commit: 9eafdee


archive/issue_comments_288202.json:

{
    "body": "Author: **Ralf Stephan**",
    "created_at": "2016-03-25T13:47:08Z",
    "formatter": "markdown",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_comment",
    "url": "https://github.com/sagemath/sage/issues/20098#issuecomment-288202",
    "user": "https://github.com/rwst"
}

Author: Ralf Stephan


archive/issue_comments_288203.json:

{
    "body": "Reviewer: **Marc Mezzarobba**",
    "created_at": "2016-03-27T09:07:29Z",
    "formatter": "markdown",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_comment",
    "url": "https://github.com/sagemath/sage/issues/20098#issuecomment-288203",
    "user": "https://github.com/mezzarobba"
}

Reviewer: Marc Mezzarobba


archive/issue_events_281338.json:

{
    "actor": "https://github.com/mezzarobba",
    "created_at": "2016-03-27T09:07:29Z",
    "event": "unlabeled",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "label": "https://github.com/sagemath/sage/labels/needs%20review",
    "label_color": "7fff00",
    "label_name": "needs review",
    "label_text_color": "ffffff",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281338"
}

archive/issue_events_281339.json:

{
    "actor": "https://github.com/mezzarobba",
    "created_at": "2016-03-27T09:07:29Z",
    "event": "labeled",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "label": "https://github.com/sagemath/sage/labels/positive%20review",
    "label_color": "dfffc0",
    "label_name": "positive review",
    "label_text_color": "ffffff",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281339"
}

archive/issue_events_281340.json:

{
    "actor": "https://github.com/vbraun",
    "created_at": "2016-03-28T07:24:10Z",
    "event": "unlabeled",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "label": "https://github.com/sagemath/sage/labels/positive%20review",
    "label_color": "dfffc0",
    "label_name": "positive review",
    "label_text_color": "ffffff",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281340"
}

archive/issue_events_281341.json:

{
    "actor": "https://github.com/vbraun",
    "commit_id": "0fd27590ad3ab566a1d1b947172fd3b77e11f54c",
    "commit_repository": "https://github.com/sagemath/sage",
    "created_at": "2016-03-28T07:24:10Z",
    "event": "closed",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_event",
    "url": "https://github.com/sagemath/sage/issues/20098#event-281341"
}

archive/issue_comments_288204.json:

{
    "body": "Changed branch from **[u/rws/re_im_tanh__wrong_formula](https://github.com/sagemath/sagetrac-mirror/tree/u/rws/re_im_tanh__wrong_formula)** to **[`9eafdee`](https://github.com/sagemath/sagetrac-mirror/commit/9eafdee72e2d440a0ae9f7b47125a867a1524960)**",
    "created_at": "2016-03-28T07:24:10Z",
    "formatter": "markdown",
    "issue": "https://github.com/sagemath/sage/issues/20098",
    "type": "issue_comment",
    "url": "https://github.com/sagemath/sage/issues/20098#issuecomment-288204",
    "user": "https://github.com/vbraun"
}

Changed branch from u/rws/re_im_tanh__wrong_formula to 9eafdee