Posts

Showing posts from December 19, 2018

Adjoining an element with given minimal polynomial to a DVR of characteristic p.

Image
up vote 1 down vote favorite 2 Let $A$ be a DVR of characteristic $p$ , with $pi$ a uniformising parameter, with $K=frac(A)$ the field of fractions. Consider the extension $L=K(alpha)$ where $alpha$ has minimal polynomial $y^p+pi^b y+pi^c$ , with $0<bleq c$ . The problem is to show the existence of an element of $L$ with minimal polynomial $y^p+upi y+vpi^{p(c-b)}$ , with $u,vin A^*$ . I think this is going to be manipulating the known minimal polynomial of $alpha$ to produce such another element, eg $alpha pi^k+pi^l$ , for $k,linmathbb{Z}$ , possibly using the Frobenius map. I wasn't able to make this work however, so it may require a more sophisticated idea. Any hints would be much appreciated. abstract-algebra algebraic-number-theory valuation-theory local-rings

JS PDF Blob empty page

Image
up vote 0 down vote favorite I'm using external Rest API to get spedition label for package. In response I have: %PDF-1.4n%����n6 0 objn<</ColorSpace[/Indexed/DeviceRGB 255( [...] Now I need to display PDF in browser var xhr = new XMLHttpRequest(); xhr.open('POST', '/Order/CreateShipmentInpost', true); xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); xhr.responseType = 'arraybuffer'; xhr.onload = function (e) { if (this.status == 200) { var blob = new Blob([this.response], { type: "application/pdf" }); var link = document.createElement('a'); link.href = window.URL.createObjectURL(blob); link.download = "Report.pdf"; link.click();