Jeong Han Kim

Multi tool use
Jeong Han Kim (* 20. Juli 1962 in Seoul) ist ein südkoreanischer Mathematiker.
Kim studierte an der Yonsei Universität und wurde 1993 bei Jeff Kahn an der Rutgers University promoviert (Non-combinatorial approaches to combinatorial problems).[1] Er war an den ATT Bell Laboratories und bei Microsoft Research, war Professor an der Universität Yonsei und ist Professor am Korea Institute for Advanced Study.
1997 erhielt er den Fulkerson-Preis für seinen Beweis, dass die Ramsey-Zahl R(3,t){displaystyle R(3,t)}
asymptotisch von der Ordnung t2logt{displaystyle {frac {t^{2}}{log t}}}
ist. [2] Er befasst sich auch mit Informatik und Graphentheorie.
Weblinks |
- Homepage am Korea Institute for Advanced Study
Einzelnachweise |
↑ Jeong Han Kim im Mathematics Genealogy Project (englisch) Vorlage:MathGenealogyProject/Wartung/id verwendet
↑ Kim, The Ramsey Number R(3,t) Has Order of Magnitude t2/log t, Random Structures and Algorithms, Band 7, 1995, S. 173–207
4aCJU9Oc7
Popular posts from this blog
up vote
1
down vote
favorite
I'm trying to write to the output (echo) within two pipe to have a trace of what I'm doing but I have an error. Get-ChildItem $path -Recurse | Where-Object { $_.Name -match '.+?.log.(d{4})-(d{2})-(d{2})$' -and $_.LastWriteTime -lt $deleteDate } | Write-Output "deleting file" -PassThru | Remove-Item but I have this error : Write-Output : The input object cannot be bound to any parameters for the command either because the command does not take pipeline input or the input and its properties do not match any of the parameters that take pipeline input. I also tested in the Foreach-Object function Get-ChildItem $path -Recurse | Where-Object { $_.Name -match '.+?.log.(d{4})-(d{2})-(d{2})$' -and $_.LastWriteTime -lt $deleteDate } | Foreach-Object...
Dieser Artikel befasst sich mit der Volksrepublik China und ist nicht zu verwechseln mit der Republik China (Taiwan). Siehe auch China (Begriffsklärung). Dieser Artikel wurde aufgrund von inhaltlichen Mängeln auf der Qualitätssicherungsseite der Redaktion Ostasien eingetragen. Dies geschieht, um die Qualität der Artikel aus dem Themengebiet Ostasien auf ein akzeptables Niveau zu bringen. Dabei werden Artikel gelöscht, die nicht signifikant verbessert werden können. Bitte hilf mit, die inhaltlichen Mängel dieses Artikels zu beseitigen, und beteilige dich bitte an der Diskussion ! 中华人民共和国 Zhōnghuá Rénmín Gònghéguó Volksrepublik China Flagge Emblem Amtssprache Chinesisch (Hochchinesisch) und anerkannte Regionalsprachen 1 Hauptstadt Peking Staatsform Republik Regierungssystem Sozialistisches Einparteiensystem Staatsoberhaupt Staatspräsident Xi Jinping Regierungschef Ministerpräsident Li Keqiang Fläc...
up vote
0
down vote
favorite
I'm trying to use the bulk inset api for elastic search. I would like to insert documents with auto generated IDs but I'm just getting errors no matter what i try. Here are a few example efforts: http://localhost:9200/_bulk {"create": {"_index": "test", "_type": "_doc"} } {"user": "kimchy", "post_date": "2002-11-15T14:12:12", "message": "trying out Elasticsearch"} Both put and post give the error: { "error": { "root_cause": [ { "type": "action_request_validation_exception", "reason": "Validation Failed: 1: an id must be provided if version type or value are set;" } ], ...